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-Tag: v2.3.0-rc0~53^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6936f29;p=thirdparty%2Fqemu.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 97d04bd8d98..25b1369d708 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; }