diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/display.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-04-06 Adam Jackson <ajax@freedesktop.org> + + * src/display.c: + Coverity #159: Prevent a possible NULL chase. + 2006-03-04 Daniel Stone <daniel@freedesktop.org> * include/X11/Xcursor/Xcursor.h: 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; } |