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

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