summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-04-07 00:58:59 +0000
committerAdam Jackson <ajax@nwnk.net>2006-04-07 00:58:59 +0000
commitf9bc007d71f58db93b7eadeb8c77d0f90379c620 (patch)
tree548058714136182375b98090b1358423c3a867a2 /src
parent1f862e619f12b54bee2efbb66f77c750184b191f (diff)
downloadxorg-lib-libXcursor-f9bc007d71f58db93b7eadeb8c77d0f90379c620.tar.gz
Coverity #159: Prevent a possible NULL chase.XORG-7_0_99_901
Diffstat (limited to 'src')
-rw-r--r--src/display.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/display.c b/src/display.c
index 252a056..a2e685c 100644
--- a/src/display.c
+++ b/src/display.c
@@ -57,7 +57,8 @@ _XcursorCloseDisplay (Display *dpy, XExtCodes *codes)
}
_XUnlockMutex (_Xglobal_lock);
- _XcursorFreeDisplayInfo (info);
+ if (info)
+ _XcursorFreeDisplayInfo (info);
return 0;
}