summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2015-09-10 10:34:50 -0600
committerMarkus Armbruster <armbru@redhat.com>2015-09-18 14:34:39 +0200
commit88e2ce291595ed8f12636b40523fdb215a9d3374 (patch)
treea40481b40f83abe7fc07e65d9764e0bbedaa72b9 /util
parent50b7b000c9171c1253c1c875f46f654c3c0e1fc8 (diff)
downloadhqemu-88e2ce291595ed8f12636b40523fdb215a9d3374.zip
hqemu-88e2ce291595ed8f12636b40523fdb215a9d3374.tar.gz
error: Copy location information in error_copy()
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>
Diffstat (limited to 'util')
-rw-r--r--util/error.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/error.c b/util/error.c
index 9dd474f..b1eb8a2 100644
--- a/util/error.c
+++ b/util/error.c
@@ -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);
}
OpenPOWER on IntegriCloud