From 23115a607e27e87c0778442ae2c2d79a8bbac0ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 16 Sep 2017 11:31:16 +0200 Subject: [PATCH] path-lookup: fix minor memleak Introduced in a1f31f4715. --- src/shared/path-lookup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c index 0b067ddf01d..a289511be51 100644 --- a/src/shared/path-lookup.c +++ b/src/shared/path-lookup.c @@ -701,6 +701,7 @@ void lookup_paths_free(LookupPaths *p) { p->runtime_control = mfree(p->runtime_control); p->root_dir = mfree(p->root_dir); + p->temporary_dir = mfree(p->temporary_dir); } int lookup_paths_reduce(LookupPaths *p) { -- 2.47.3