mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-02 07:23:41 +02:00
Bug 558185 – 'parent' variable in
2008-10-31 Grahame Bowland <grahame@angrygoats.net> Bug 558185 – 'parent' variable in g_local_file_get_child_for_display_name() hits g_object_unref(NULL) assertion * gio/glocalfile.c: - remove unused variable. Patch by Matt Johnston <matt@ucc.asn.au> svn path=/trunk/; revision=7636
This commit is contained in:
committed by
Grahame Michael Bowland
parent
b54e0af92f
commit
df719f749c
@@ -592,7 +592,7 @@ g_local_file_get_child_for_display_name (GFile *file,
|
||||
const char *display_name,
|
||||
GError **error)
|
||||
{
|
||||
GFile *parent, *new_file;
|
||||
GFile *new_file;
|
||||
char *basename;
|
||||
|
||||
basename = g_filename_from_utf8 (display_name, -1, NULL, NULL, NULL);
|
||||
@@ -604,9 +604,7 @@ g_local_file_get_child_for_display_name (GFile *file,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
parent = g_file_get_parent (file);
|
||||
new_file = g_file_get_child (file, basename);
|
||||
g_object_unref (parent);
|
||||
g_free (basename);
|
||||
|
||||
return new_file;
|
||||
|
Reference in New Issue
Block a user