From 14c26d05bac9dab32ce9a7f0597882c4fd0031d3 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sat, 21 Jun 2008 06:21:58 +0000 Subject: [PATCH] fix leak --- ext/phar/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/phar/util.c b/ext/phar/util.c index 043aad7b14..b20d257fe5 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -289,6 +289,7 @@ splitted: return ret; } } + efree(test); } spprintf(&path, MAXPATHLEN, "phar://%s/%s%c%s", arch, PHAR_G(cwd), DEFAULT_DIR_SEPARATOR, PG(include_path)); efree(arch); -- 2.50.1