OSDN Git Service

monitor: fix client_migrate_info error handling
authorYonit Halperin <yhalperi@redhat.com>
Sun, 18 Mar 2012 07:42:39 +0000 (09:42 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 19 Mar 2012 12:12:19 +0000 (13:12 +0100)
Report QERR_MISSING_PARAMETER when port is missing. Otherwise
QERR_UNDEFINED_ERROR will occur.

rhbz #795652

Signed-off-by: Yonit Halperin <yhalperi@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
monitor.c

index d57e7bf..8f46031 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -880,6 +880,11 @@ static int client_migrate_info(Monitor *mon, const QDict *qdict,
             return -1;
         }
 
+        if (port == -1 && tls_port == -1) {
+            qerror_report(QERR_MISSING_PARAMETER, "port/tls-port");
+            return -1;
+        }
+
         ret = qemu_spice_migrate_info(hostname, port, tls_port, subject,
                                       cb, opaque);
         if (ret != 0) {