From 1a037b140893433757400267d00a3a4437c3cdb7 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Tue, 29 Oct 2013 14:53:38 +0200 Subject: [PATCH] gio: Clear error properly to prevent crash https://bugzilla.gnome.org/show_bug.cgi?id=711070 --- gio/gfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gfile.c b/gio/gfile.c index bf936ec93..9e9d79d3b 100644 --- a/gio/gfile.c +++ b/gio/gfile.c @@ -2505,7 +2505,7 @@ copy_symlink (GFile *destination, if (!tried_delete && (flags & G_FILE_COPY_OVERWRITE) && my_error->domain == G_IO_ERROR && my_error->code == G_IO_ERROR_EXISTS) { - g_error_free (my_error); + g_clear_error (&my_error); /* Don't overwrite if the destination is a directory */ info = g_file_query_info (destination, G_FILE_ATTRIBUTE_STANDARD_TYPE,