From 07e00322589140322b911318d0185ce02170c326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Tue, 1 Dec 2015 23:14:16 +0100 Subject: [PATCH] Free bitvec in bitvec test --- test/test_bitvec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_bitvec.c b/test/test_bitvec.c index df461e5..0da7670 100644 --- a/test/test_bitvec.c +++ b/test/test_bitvec.c @@ -49,6 +49,8 @@ START_TEST (test_bitvec_set_bits_from_array) fail_if(uc_bv_get_bit(v, 2) != 1 , "bit 2 is wrong"); fail_if(uc_bv_get_bit(v, 3) != 0 , "bit 3 is wrong"); fail_if(uc_bv_get_bit(v, 4) != 1 , "bit 4 is wrong"); + + uc_bv_free(v); END_TEST