]> git.proxmox.com Git - mirror_qemu.git/commitdiff
monitor: Avoid qerror_report_err() outside QMP command handlers
authorMarkus Armbruster <armbru@redhat.com>
Tue, 10 Feb 2015 14:15:43 +0000 (15:15 +0100)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 18 Feb 2015 09:51:35 +0000 (10:51 +0100)
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() in HMP command handler
hmp_trace_event().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
monitor.c

index ac2a4ab6e64a84d6c52d68ccd852bb83608804a1..b1091888f69cfd5dfec0394f67836e4e24dcd535 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -889,8 +889,7 @@ static void do_trace_event_set_state(Monitor *mon, const QDict *qdict)
 
     qmp_trace_event_set_state(tp_name, new_state, true, true, &local_err);
     if (local_err) {
-        qerror_report_err(local_err);
-        error_free(local_err);
+        error_report_err(local_err);
     }
 }