All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qemu-img: Fix crash in amend invocation
@ 2015-08-19  0:03 Max Reitz
  2015-08-20 20:46 ` Eric Blake
  0 siblings, 1 reply; 2+ messages in thread
From: Max Reitz @ 2015-08-19  0:03 UTC (permalink / raw)
  To: qemu-block; +Cc: Kevin Wolf, Max Reitz, qemu-devel, qemu-stable

Example:
$ ./qemu-img create -f qcow2 /tmp/t.qcow2 64M
$ ./qemu-img amend -f qcow2 -o backing_file=/tmp/t.qcow2, -o help \
    /tmp/t.qcow2

This should not crash. This actually is tested by iotest 082, but not
caught due to the segmentation fault being silent (which is something
that needs to be fixed, too).

Reported-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Cc: qemu-stable <qemu-stable@nongnu.org>
Signed-off-by: Max Reitz <mreitz@redhat.com>
---
 qemu-img.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/qemu-img.c b/qemu-img.c
index 75f4ee4..3ddb391 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -2930,8 +2930,7 @@ static int img_amend(int argc, char **argv)
             case 'o':
                 if (!is_valid_option_list(optarg)) {
                     error_report("Invalid option list: %s", optarg);
-                    ret = -1;
-                    goto out;
+                    return 1;
                 }
                 if (!options) {
                     options = g_strdup(optarg);
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-08-20 20:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-19  0:03 [Qemu-devel] [PATCH] qemu-img: Fix crash in amend invocation Max Reitz
2015-08-20 20:46 ` Eric Blake

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.