Skip to content
Snippets Groups Projects
Commit 18ef6b12 authored by Jerome Glisse's avatar Jerome Glisse
Browse files

xorg: fix exa finish access


The exa core will already set the pointer to NULL prior calling
the callback function. So don't bail out in the callback if it's
already NULL.

Signed-off-by: default avatarJerome Glisse <jglisse@redhat.com>
(cherry picked from commit 3310acdf)
parent 0419b7a3
No related branches found
No related tags found
No related merge requests found
......@@ -318,7 +318,7 @@ ExaFinishAccess(PixmapPtr pPix, int index)
if (!priv)
return;
if (!priv->map_transfer || pPix->devPrivate.ptr == NULL)
if (!priv->map_transfer)
return;
exa_debug_printf("ExaFinishAccess %d\n", index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment