qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Yonit Halperin <yhalperi@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 2/7] monitor: fix client_migrate_info error handling
Date: Mon, 19 Mar 2012 14:30:33 +0100	[thread overview]
Message-ID: <1332163838-1587-3-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1332163838-1587-1-git-send-email-kraxel@redhat.com>

From: Yonit Halperin <yhalperi@redhat.com>

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 |    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

  parent reply	other threads:[~2012-03-19 13:31 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-19 13:30 [Qemu-devel] [PULL 0/7] spice patch queue Gerd Hoffmann
2012-03-19 13:30 ` [Qemu-devel] [PATCH 1/7] spice: set spice uuid and name Gerd Hoffmann
2012-03-19 13:30 ` Gerd Hoffmann [this message]
2012-03-19 13:30 ` [Qemu-devel] [PATCH 3/7] qxl: init_pipe_signaling: exit on failure Gerd Hoffmann
2012-03-19 13:30 ` [Qemu-devel] [PATCH 4/7] qxl: switch qxl.c to trace-events Gerd Hoffmann
2012-03-19 13:30 ` [Qemu-devel] [PATCH 5/7] qxl/qxl_render.c: add trace events Gerd Hoffmann
2012-03-19 13:30 ` [Qemu-devel] [PATCH 6/7] hw/qxl.c: Fix compilation failures on 32 bit hosts Gerd Hoffmann
2012-03-19 13:30 ` [Qemu-devel] [PATCH 7/7] spice: fix broken initialization Gerd Hoffmann
2012-03-19 21:15 ` [Qemu-devel] [PULL 0/7] spice patch queue Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1332163838-1587-3-git-send-email-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=yhalperi@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).