From: Paolo Borelli Date: Sat, 31 Jan 2009 20:06:02 +0000 (+0000) Subject: plug a tiny mem leak. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=49719cca38cf0474514486b8e786d779f475532d;p=dana%2Fcg-glib.git plug a tiny mem leak. 2009-01-31 Paolo Borelli * glocalfileinfo.c: plug a tiny mem leak. svn path=/trunk/; revision=7841 --- diff --git a/gio/ChangeLog b/gio/ChangeLog index a25f173a..0c5b634d 100644 --- a/gio/ChangeLog +++ b/gio/ChangeLog @@ -1,3 +1,7 @@ +2009-01-31 Paolo Borelli + + * glocalfileinfo.c: plug a tiny mem leak. + 2009-01-29 Ryan Lortie * gioerror.c (g_io_error_from_errno): handle all possible cases of diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index 299fc2d6..9aa73319 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -506,6 +506,8 @@ get_xattrs (const char *path, g_free (escaped_attr); get_one_xattr (path, info, gio_attr, attr, follow_symlinks); + + g_free (gio_attr); } len = strlen (attr) + 1;