[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xl: call libxl_dominfo_init in main_list
commit 012a261664896a68b7ee5c7f74dd48741e14023c Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Mon Jul 27 18:45:04 2015 +0100 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Tue Jul 28 11:53:19 2015 +0100 xl: call libxl_dominfo_init in main_list Always call init and dispose function on info_buf though it's not always used. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/libxl/xl_cmdimpl.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index 9755d55..74edf2c 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -4852,6 +4852,8 @@ int main_list(int argc, char **argv) break; } + libxl_dominfo_init(&info_buf); + if (optind >= argc) { info = libxl_list_domain(ctx, &nb_domain); if (!info) { @@ -4886,8 +4888,8 @@ int main_list(int argc, char **argv) if (info_free) libxl_dominfo_list_free(info, nb_domain); - else - libxl_dominfo_dispose(info); + + libxl_dominfo_dispose(&info_buf); return 0; } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |