Commit 77c909dee2edbef2e96f95887a6abd96b985df6f

Daniel Stone 2012-06-04T16:16:20

Fix tiny memory leak in dump test We forgot to free the path we'd allocated with asprintf. Signed-off-by: Daniel Stone <daniel@fooishbar.org>

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/test/dump.c b/test/dump.c
index bd6d1ab..16d1768 100644
--- a/test/dump.c
+++ b/test/dump.c
@@ -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);