mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Don't unref before last use
svn path=/trunk/; revision=6997
This commit is contained in:
parent
8013b215cd
commit
9aad44c339
@ -1,3 +1,7 @@
|
||||
2008-06-11 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gfile.c (g_file_replace_contents): Don't unref before the last use.
|
||||
|
||||
2008-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 537546 – 'desktop' shortcut in file chooser looks like a generic
|
||||
|
@ -5444,11 +5444,12 @@ g_file_replace_contents (GFile *file,
|
||||
}
|
||||
|
||||
ret = g_output_stream_close (G_OUTPUT_STREAM (out), cancellable, error);
|
||||
g_object_unref (out);
|
||||
|
||||
if (new_etag)
|
||||
*new_etag = g_file_output_stream_get_etag (out);
|
||||
|
||||
g_object_unref (out);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user