From: John Ferlan Date: Tue, 22 Jan 2013 22:09:28 +0000 (-0500) Subject: virbitmaptest: Resolve Coverity errors X-Git-Tag: v1.0.2-rc1~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ff3876cc811f14a8f21bccf947338b90c8e66b1;p=thirdparty%2Flibvirt.git virbitmaptest: Resolve Coverity errors test1: Need to check for bitmap before using as well as free it properly test2: need to check for bitsString2 before using it. --- diff --git a/tests/virbitmaptest.c b/tests/virbitmaptest.c index db766729a7..66ffd1b49d 100644 --- a/tests/virbitmaptest.c +++ b/tests/virbitmaptest.c @@ -29,26 +29,33 @@ static int test1(const void *data ATTRIBUTE_UNUSED) int size; int bit; bool result; + int ret = -1; size = 1024; bit = 100; - bitmap = virBitmapNew(size); + if (!(bitmap = virBitmapNew(size))) + goto error; + if (virBitmapSetBit(bitmap, bit) < 0) - return -1; + goto error; if (virBitmapGetBit(bitmap, bit, &result) < 0) - return -1; + goto error; if (!result) - return -1; + goto error; if (virBitmapGetBit(bitmap, bit + 1, &result) < 0) - return -1; + goto error; if (result) - return -1; + goto error; - return 0; + ret = 0; + +error: + virBitmapFree(bitmap); + return ret; } static int @@ -102,7 +109,8 @@ static int test2(const void *data ATTRIBUTE_UNUSED) if (virBitmapCountBits(bitmap) != 48) goto error; - bitsString2 = virBitmapFormat(bitmap); + if (!(bitsString2 = virBitmapFormat(bitmap))) + goto error; if (strcmp(bitsString1, bitsString2)) goto error;