Resolve valgrind error

Commit id '1acfc171' resulted in the following valgrind failure:

==25317== 136 (24 direct, 112 indirect) bytes in 1 blocks are definitely lost in loss record 4 of 4
==25317==    at 0x4A06B6F: calloc (vg_replace_malloc.c:593)
==25317==    by 0x4C6F851: virAlloc (viralloc.c:124)
==25317==    by 0x4C71493: virBitmapNew (virbitmap.c:74)
==25317==    by 0x4C71B79: virBitmapNewData (virbitmap.c:434)
==25317==    by 0x402EF2: test8 (virbitmaptest.c:436)
==25317==    by 0x40499F: virtTestRun (testutils.c:157)
==25317==    by 0x402E8D: mymain (virbitmaptest.c:474)
==25317==    by 0x404FDA: virtTestMain (testutils.c:719)
==25317==    by 0x39D0821A04: (below main) (in /usr/lib64/libc-2.16.so)
This commit is contained in:
John Ferlan 2013-04-15 11:50:59 -04:00
parent 8b934a5cb6
commit c3ad5a3670

View File

@ -432,24 +432,25 @@ static int test8(const void *v ATTRIBUTE_UNUSED)
{
virBitmapPtr bitmap = NULL;
char data[108] = {0x00,};
int ret = -1;
bitmap = virBitmapNewData(data, sizeof(data));
if (!bitmap)
goto error;
goto cleanup;
if (!virBitmapIsAllClear(bitmap))
goto error;
goto cleanup;
if (virBitmapSetBit(bitmap, 11) < 0)
goto error;
goto cleanup;
if (virBitmapIsAllClear(bitmap))
goto error;
goto cleanup;
return 0;
error:
ret = 0;
cleanup:
virBitmapFree(bitmap);
return -1;
return ret;
}
static int