]> xenbits.xensource.com Git - libvirt.git/commitdiff
virbitmaptest: Resolve Coverity errors
authorJohn Ferlan <jferlan@redhat.com>
Tue, 22 Jan 2013 22:09:28 +0000 (17:09 -0500)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 23 Jan 2013 14:02:06 +0000 (15:02 +0100)
test1: Need to check for bitmap before using as well as free it properly
test2: need to check for bitsString2 before using it.

tests/virbitmaptest.c

index db766729a7a3299377736191452127eefdefbf92..66ffd1b49d312f7e1d628305b0ad23d7bca4d4c2 100644 (file)
@@ -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;