diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/ui/ui.c | 10 |
2 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2009-01-27 Matthias Claesen <mclasen@redhat.com> + + * src/ui/ui.c: free the result of gdk_text_property_to_utf8_list() + even when it returns no data. + 2009-01-27 Owen Taylor <otaylor@redhat.com> GtkStyle is specific to a particular colormap. Metacity diff --git a/src/ui/ui.c b/src/ui/ui.c index 010130c..6df289f 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -671,10 +671,12 @@ meta_text_property_to_utf8 (Display *xdisplay, &list); if (count == 0) - return NULL; - - retval = list[0]; - list[0] = g_strdup (""); /* something to free */ + retval = NULL; + else + { + retval = list[0]; + list[0] = g_strdup (""); /* something to free */ + } g_strfreev (list); |