1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-10 05:17:59 +03:00

tests: Resolve Coverity RESOURCE_LEAK

Commit id 'b77ce18a2' added a new bitmap, but neglected to virBitmapFree it
This commit is contained in:
John Ferlan 2015-04-15 10:16:36 -04:00
parent 31ef0836a7
commit 960e009c58

View File

@ -548,6 +548,7 @@ test10(const void *opaque ATTRIBUTE_UNUSED)
virBitmapFree(b1);
virBitmapFree(b2);
virBitmapFree(b3);
virBitmapFree(b4);
return ret;
}