OSDN Git Service

error: Copy location information in error_copy()
authorEric Blake <eblake@redhat.com>
Thu, 10 Sep 2015 16:34:50 +0000 (10:34 -0600)
committerMarkus Armbruster <armbru@redhat.com>
Fri, 18 Sep 2015 12:34:39 +0000 (14:34 +0200)
Commit 1e9b65bb forgot to propagate source information to copied
errors.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1441902890-23064-1-git-send-email-eblake@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
util/error.c

index 9dd474f..b1eb8a2 100644 (file)
@@ -174,6 +174,9 @@ Error *error_copy(const Error *err)
     err_new = g_malloc0(sizeof(*err));
     err_new->msg = g_strdup(err->msg);
     err_new->err_class = err->err_class;
+    err_new->src = err->src;
+    err_new->line = err->line;
+    err_new->func = err->func;
     if (err->hint) {
         err_new->hint = g_string_new(err->hint->str);
     }