|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] xl: fixup "xl save" command line handling
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1317141136 -3600
# Node ID b113d626cfaf7c8faa7be9d528816ed944e59ba8
# Parent ade44be5b9364b66d76ad9448d158c26444c4d61
xl: fixup "xl save" command line handling.
The save file paramter is required so ensure we have enough arguments.
The config filename is optional so do not use argv[optind+3], which
may well happen to be NULL when the paramter is not present but
relying on that is pretty gross.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Committed-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
---
diff -r ade44be5b936 -r b113d626cfaf tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c Tue Sep 27 16:15:09 2011 +0100
+++ b/tools/libxl/xl_cmdimpl.c Tue Sep 27 17:32:16 2011 +0100
@@ -2856,8 +2856,8 @@
int main_save(int argc, char **argv)
{
- const char *filename = NULL, *p = NULL;
- const char *config_filename;
+ const char *filename, *p;
+ const char *config_filename = NULL;
int checkpoint = 0;
int opt;
@@ -2871,14 +2871,16 @@
}
}
- if (argc-optind > 3) {
+ if (argc-optind < 2 || argc-optind > 3) {
help("save");
return 2;
}
p = argv[optind];
filename = argv[optind + 1];
- config_filename = argv[optind + 2];
+ if ( argc - optind >= 3 )
+ config_filename = argv[optind + 2];
+
save_domain(p, filename, checkpoint, config_filename);
return 0;
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] xl: fixup "xl save" command line handling.,
Xen patchbot-unstable <=
|
|
|
|
|