qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Fix regression in option parsing


From: Anthony Liguori
Subject: [Qemu-devel] [PATCH] Fix regression in option parsing
Date: Wed, 27 Jan 2010 10:47:52 -0600

Commit ec229bbe7 broke invocation without a specific -hda.  IOW, qemu foo.img.
The lack of an optind update caused an infinite loop.

Reported-by: Amit Shah <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>
---
 vl.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/vl.c b/vl.c
index 1cd355c..6f1e1ab 100644
--- a/vl.c
+++ b/vl.c
@@ -4819,6 +4819,7 @@ int main(int argc, char **argv, char **envp)
     while (optind < argc) {
         if (argv[optind][0] != '-') {
             /* disk image */
+            optind++;
             continue;
         } else {
             const QEMUOption *popt;
-- 
1.6.5.2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]