Don't unref before last use

svn path=/trunk/; revision=6997
This commit is contained in:
Matthias Clasen 2008-06-11 14:05:45 +00:00
parent 8013b215cd
commit 9aad44c339
2 changed files with 6 additions and 1 deletions

View File

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

View File

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