Which is to say, actually do label them, so that the data we're going to need for access checks gets allocated, so we don't crash the next time we touch the drawable.
Signed-off-by: Adam Jackson <[email protected]> --- Xext/shm.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Xext/shm.c b/Xext/shm.c index db9d474..04ba10d 100644 --- a/Xext/shm.c +++ b/Xext/shm.c @@ -971,6 +971,12 @@ ProcPanoramiXShmCreatePixmap(ClientPtr client) stuff->offset); if (pMap) { + result = XaceHook(XACE_RESOURCE_ACCESS, client, stuff->pid, + RT_PIXMAP, pMap, RT_NONE, NULL, DixCreateAccess); + if (result != Success) { + pDraw->pScreen->DestroyPixmap(pMap); + return result; + } dixSetPrivate(&pMap->devPrivates, shmPixmapPrivateKey, shmdesc); shmdesc->refcnt++; pMap->drawable.serialNumber = NEXT_SERIAL_NUMBER; -- 2.1.0 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
