[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] Fix stack dump on improper use of domid and domname
This is another patch that adds an arg_check() to domid and domname so that we don't dump stack if a user runs either without an argument. Signed-off-by: Dan Smith <danms@xxxxxxxxxx> diff -r 289b73a5ace7 tools/python/xen/xm/main.py --- a/tools/python/xen/xm/main.py Thu Nov 3 08:58:45 2005 +++ b/tools/python/xen/xm/main.py Thu Nov 3 14:36:31 2005 @@ -464,6 +464,8 @@ server.xend_domain_set_vcpus(args[0], int(args[1])) def xm_domid(args): + arg_check(args, 1, "domid") + name = args[0] from xen.xend.XendClient import server @@ -471,6 +473,8 @@ print sxp.child_value(dom, 'domid') def xm_domname(args): + arg_check(args, 1, "domname") + name = args[0] from xen.xend.XendClient import server -- Dan Smith IBM Linux Technology Center Open Hypervisor Team email: danms@xxxxxxxxxx _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |