]> git.proxmox.com Git - mirror_qemu.git/commitdiff
migration: Avoid qerror_report_err() outside QMP command handlers
authorMarkus Armbruster <armbru@redhat.com>
Wed, 18 Feb 2015 18:21:52 +0000 (19:21 +0100)
committerJuan Quintela <quintela@redhat.com>
Tue, 17 Mar 2015 14:20:37 +0000 (15:20 +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
process_incoming_migration_co().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
migration/migration.c

index 2c805f11f50e71545955b3db6e931cb6aee45f8d..60da9fef3c6ecefb33ad7ca4ca21e3f48ed0cae4 100644 (file)
@@ -123,8 +123,7 @@ static void process_incoming_migration_co(void *opaque)
     /* Make sure all file formats flush their mutable metadata */
     bdrv_invalidate_cache_all(&local_err);
     if (local_err) {
-        qerror_report_err(local_err);
-        error_free(local_err);
+        error_report_err(local_err);
         exit(EXIT_FAILURE);
     }