diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-04-03 00:58:13 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-04-03 00:58:13 +0000 |
commit | 0ce5551f030c27705b3828b41647824577e30f74 (patch) | |
tree | d94cd2b3919ac5f99a71531507c3e1bff5ce5214 | |
parent | e9e432a987682ee16ed0dbc1e9b520fa5720150c (diff) |
Coverity #576: Plug a leak on the error path.XORG-7_0_99_901
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Xfixes.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2006-04-02 Adam Jackson <ajax@freedesktop.org> + + * src/Xfixes.c: + Coverity #576: Plug a leak on the error path. + 2006-3-13 Deron Johnson <deron.johnson@sun.com> * configure.ac diff --git a/src/Xfixes.c b/src/Xfixes.c index e4dfd05..5b279a1 100644 --- a/src/Xfixes.c +++ b/src/Xfixes.c @@ -86,6 +86,7 @@ XFixesExtAddDisplay (XFixesExtInfo *extinfo, { UnlockDisplay (dpy); SyncHandle (); + Xfree(info); return 0; } info->major_version = rep.majorVersion; |