Fix tiny memory leak in dump test
authorDaniel Stone <daniel@fooishbar.org>
Mon, 4 Jun 2012 15:16:20 +0000 (16:16 +0100)
committerDaniel Stone <daniel@fooishbar.org>
Mon, 4 Jun 2012 15:16:20 +0000 (16:16 +0100)
We forgot to free the path we'd allocated with asprintf.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
test/dump.c

index bd6d1ab..16d1768 100644 (file)
@@ -58,6 +58,7 @@ int main(int argc, char *argv[])
     assert(fd >= 0);
     assert(stat(path, &stat_buf) == 0);
     assert(stat_buf.st_size > 0);
+    free(path);
 
     expected = mmap(NULL, stat_buf.st_size, PROT_READ, MAP_SHARED, fd, 0);
     assert(expected != MAP_FAILED);