|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] xl: fix off-by-one mistake in block-attach handl
Jan Beulich writes ("[Xen-devel] [PATCH] xl: fix off-by-one mistake in
block-attach handler"):
> Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
>
> --- 2010-09-20.orig/tools/libxl/xl_cmdimpl.c 2010-09-15 17:59:07.000000000
> +0200
> +++ 2010-09-20/tools/libxl/xl_cmdimpl.c 2010-09-21 12:06:58.000000000
> +0200
> @@ -4280,7 +4280,7 @@ int main_blockattach(int argc, char **ar
> }
> disk.virtpath = argv[optind+2];
> disk.unpluggable = 1;
> - disk.readwrite = ((argc-optind <= 2) || (argv[optind+3][0] == 'w'));
> + disk.readwrite = ((argc-optind <= 3) || (argv[optind+3][0] == 'w'));
This idiom is pretty nasty. Perhaps we should rewrite it to:
+ disk.readwrite = (argc-optind > 3) ? (argv[optind+3][0] == 'w') : 1;
or some such ?
Ian.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|