From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43395) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9cfz-0003HO-EV for qemu-devel@nongnu.org; Mon, 19 Mar 2012 09:31:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9cfb-00053k-3p for qemu-devel@nongnu.org; Mon, 19 Mar 2012 09:31:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59278) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9cfa-000539-RI for qemu-devel@nongnu.org; Mon, 19 Mar 2012 09:30:43 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2JDUfAK024183 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Mar 2012 09:30:41 -0400 From: Gerd Hoffmann Date: Mon, 19 Mar 2012 14:30:33 +0100 Message-Id: <1332163838-1587-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1332163838-1587-1-git-send-email-kraxel@redhat.com> References: <1332163838-1587-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 2/7] monitor: fix client_migrate_info error handling List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Yonit Halperin , Gerd Hoffmann From: Yonit Halperin Report QERR_MISSING_PARAMETER when port is missing. Otherwise QERR_UNDEFINED_ERROR will occur. rhbz #795652 Signed-off-by: Yonit Halperin Signed-off-by: Gerd Hoffmann --- monitor.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/monitor.c b/monitor.c index d57e7bf..8f46031 100644 --- 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) { -- 1.7.1