exa: fix assert logic thinko from 361a9eb953

- I guess failing PrepareAccess is rare, since this a 3 year old bug.
(cherry picked from commit c662381a14)
This commit is contained in:
Maarten Maathuis 2008-08-17 19:57:02 +02:00 committed by Jeremy Huddleston
parent 5fcfeee41b
commit 6f7ab5a6ac

View File

@ -365,7 +365,7 @@ exaPrepareAccess(DrawablePtr pDrawable, int index)
if (!(*pExaScr->info->PrepareAccess) (pPixmap, index)) {
ExaPixmapPriv (pPixmap);
if (pExaPixmap->score != EXA_PIXMAP_SCORE_PINNED)
if (pExaPixmap->score == EXA_PIXMAP_SCORE_PINNED)
FatalError("Driver failed PrepareAccess on a pinned pixmap\n");
exaMoveOutPixmap (pPixmap);
}