mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 07:26:15 +01:00
Fix leak inside g_local_file_get_parse_name()
Signed-off-by: Federico Mena Quintero <federico@novell.com> svn path=/trunk/; revision=7629
This commit is contained in:
parent
6b2d7a5344
commit
7b46b2a43b
@ -1,3 +1,7 @@
|
||||
2008-10-27 Federico Mena Quintero <federico@novell.com>
|
||||
|
||||
* glocalfile.c (g_local_file_get_parse_name): Don't leak roundtripped_filename.
|
||||
|
||||
2008-10-27 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
Bug 557592 - Missing include in gwinhttpfile.c
|
||||
|
@ -431,6 +431,8 @@ g_local_file_get_parse_name (GFile *file)
|
||||
g_free (utf8_filename);
|
||||
utf8_filename = NULL;
|
||||
}
|
||||
|
||||
g_free (roundtripped_filename);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user