fix for ZDI-11426
Avoid leaking un-initalized memory to clients by zeroing the whole pixmap on initial allocation. This vulnerability was discovered by: Jan-Niklas Sohn working with Trend Micro Zero Day Initiative Signed-off-by: Matthieu Herrb <matthieu@herrb.eu> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> (cherry picked from commit a6b2cbe91793ae4967cd21a7103d889248029553)
This commit is contained in:
parent
2720b87157
commit
4979ac8f0b
|
@ -117,7 +117,7 @@ AllocatePixmap(ScreenPtr pScreen, int pixDataSize)
|
||||||
if (pScreen->totalPixmapSize > ((size_t) - 1) - pixDataSize)
|
if (pScreen->totalPixmapSize > ((size_t) - 1) - pixDataSize)
|
||||||
return NullPixmap;
|
return NullPixmap;
|
||||||
|
|
||||||
pPixmap = malloc(pScreen->totalPixmapSize + pixDataSize);
|
pPixmap = calloc(1, pScreen->totalPixmapSize + pixDataSize);
|
||||||
if (!pPixmap)
|
if (!pPixmap)
|
||||||
return NullPixmap;
|
return NullPixmap;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue