[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Add some minor defensive coding/error handling in xc_vmx_build.c like
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID e436e4e93076c8f4c434b9531b70179b90347b48 # Parent bdb8c00ddb852fc6eab2175b7e3738d015ec2738 Add some minor defensive coding/error handling in xc_vmx_build.c like C/S 7687 Signed-off-by: Haifeng Xue <haifeng.xue@xxxxxxxxx> Signed-off-by: Xin Li <xin.b.li@xxxxxxxxx> diff -r bdb8c00ddb85 -r e436e4e93076 tools/libxc/xc_vmx_build.c --- a/tools/libxc/xc_vmx_build.c Thu Nov 10 11:05:22 2005 +++ b/tools/libxc/xc_vmx_build.c Thu Nov 10 11:06:50 2005 @@ -565,8 +565,10 @@ return 0; error_out: - free(mmu); - free(page_array); + if ( mmu != NULL ) + free(mmu); + if ( page_array != NULL ) + free(page_array); return -1; } @@ -627,7 +629,7 @@ if ( mlock(&st_ctxt, sizeof(st_ctxt) ) ) { - PERROR("xc_vmx_build: ctxt mlock failed"); + PERROR("%s: ctxt mlock failed", __func__); return 1; } @@ -661,7 +663,8 @@ goto error_out; } - free(image); + if ( image != NULL ) + free(image); ctxt->flags = VGCF_VMX_GUEST; /* FPU is set up to default initial state. */ @@ -707,7 +710,8 @@ return rc; error_out: - free(image); + if ( image != NULL ) + free(image); return -1; } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |