2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-29 05:18:13 +00:00

test-bitmap: Fix multiple minor memory leaks

Signed-off-by: Thomas Graf <tgraf@noironetworks.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Thomas Graf 2014-09-01 18:10:26 +02:00 committed by Ben Pfaff
parent b4bb68c2bc
commit c44a2a6df4

View File

@ -56,6 +56,9 @@ test_bitmap_equal(void)
assert(!bitmap_equal(a, b, 11 * BITMAP_ULONG_BITS - 1));
assert(!bitmap_equal(a, b,
11 * BITMAP_ULONG_BITS - (BITMAP_ULONG_BITS - 1)));
free(b);
free(a);
}
/* Tests bitmap_scan. */
@ -107,6 +110,8 @@ test_bitmap_scan(void)
assert(bitmap_scan(a, false, 0, MAX_BITS - 1) == BITMAP_ULONG_BITS - 1);
bitmap_set0(a, 0);
assert(bitmap_scan(a, false, 0, MAX_BITS - 1) == 0);
free(a);
}
static void