summaryrefslogtreecommitdiff
path: root/src/test/test-path-util.c
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-12-04 00:05:20 +0100
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2014-12-04 00:13:10 +0100
commitf08c4c08c7c2ce0fdfb4cf49642b00fbfb15185f (patch)
tree3c9ab7aefe48cb6a087ea109cdb6fbd1080b0b4b /src/test/test-path-util.c
parent3b0ed75c353946ba580a7724f9dbeb761e2067fe (diff)
test-path-util: fix a leak
Diffstat (limited to 'src/test/test-path-util.c')
-rw-r--r--src/test/test-path-util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/test-path-util.c b/src/test/test-path-util.c
index 4ebbfa9a76..58b456a291 100644
--- a/src/test/test-path-util.c
+++ b/src/test/test-path-util.c
@@ -109,6 +109,8 @@ static void test_find_binary(const char *self, bool local) {
assert_se(find_binary("/some/dir/xxxx-xxxx", local, &p) ==
(local ? -ENOENT : 0));
+ if (!local)
+ free(p);
}
static void test_prefixes(void) {