From: Markus Armbruster Date: Tue, 10 Feb 2015 14:14:02 +0000 (+0100) Subject: qemu-img: Avoid qerror_report_err() outside QMP command handlers X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6936f29;p=qemu.git qemu-img: Avoid qerror_report_err() outside QMP command handlers qerror_report_err() is a transitional interface to help with converting existing monitor commands to QMP. It should not be used elsewhere. Replace by error_report_err(). Signed-off-by: Markus Armbruster Reviewed-by: Eric Blake --- diff --git a/qemu-img.c b/qemu-img.c index 97d04bd8d9..25b1369d70 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -889,8 +889,7 @@ done: blk_unref(blk); if (local_err) { - qerror_report_err(local_err); - error_free(local_err); + error_report_err(local_err); return 1; }