Fix regression in option parsing

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 <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Anthony Liguori 2010-01-27 10:46:00 -06:00
parent b4bf0a9a69
commit 28e68d68b0
1 changed files with 1 additions and 0 deletions

1
vl.c
View File

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