From: Igor Kovalenko <[email protected]> Store parsed value of integer option to result pointer. This fixes -cdrom not adding any ide cdrom.
Signed-off-by: [email protected] Signed-off-by: Avi Kivity <[email protected]> diff --git a/qemu-option.c b/qemu-option.c index 73c2175..591d178 100644 --- a/qemu-option.c +++ b/qemu-option.c @@ -193,6 +193,7 @@ static int parse_option_number(const char *name, const char *value, uint64_t *re fprintf(stderr, "Option '%s' needs a number as parameter\n", name); return -1; } + *ret = number; } else { fprintf(stderr, "Option '%s' needs a parameter\n", name); return -1; -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
