plug a tiny mem leak.

2009-01-31  Paolo Borelli  <pborelli@katamail.com>

	* glocalfileinfo.c: plug a tiny mem leak.


svn path=/trunk/; revision=7841
This commit is contained in:
Paolo Borelli 2009-01-31 20:06:02 +00:00 committed by Paolo Borelli
parent e4f6ecbda6
commit 49719cca38
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-01-31 Paolo Borelli <pborelli@katamail.com>
* glocalfileinfo.c: plug a tiny mem leak.
2009-01-29 Ryan Lortie <desrt@desrt.ca>
* gioerror.c (g_io_error_from_errno): handle all possible cases of

View File

@ -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;