summaryrefslogtreecommitdiffstats
path: root/monitor.c
diff options
context:
space:
mode:
authorBandan Das <bsd@redhat.com>2015-06-03 18:38:10 -0400
committerMarkus Armbruster <armbru@redhat.com>2015-06-22 17:40:00 +0200
commite549d2aaeba1cfac207c9a9675cc203e6372a22e (patch)
tree556ff747b9acf1b91ea39f0fb011a7de2e1c0e29 /monitor.c
parentdd41eea77129a4cd8ae5170b02e0fee175af314e (diff)
downloadhqemu-e549d2aaeba1cfac207c9a9675cc203e6372a22e.zip
hqemu-e549d2aaeba1cfac207c9a9675cc203e6372a22e.tar.gz
monitor: Fix failure path for "S" argument
Since the "S" argument type is only used with the "?" flag, the bug can't bite. Signed-off-by: Bandan Das <bsd@redhat.com> Acked-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor.c b/monitor.c
index 4c7faf9..8b1dbf8 100644
--- a/monitor.c
+++ b/monitor.c
@@ -4016,7 +4016,7 @@ static QDict *monitor_parse_arguments(Monitor *mon,
if (len <= 0) {
monitor_printf(mon, "%s: string expected\n",
cmd->name);
- break;
+ goto fail;
}
qdict_put(qdict, key, qstring_from_str(p));
p += len;
OpenPOWER on IntegriCloud