From 7032c7dddf1c8579f0fa747baea1750d0cb06dd0 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Mon, 20 Nov 2006 11:12:35 +0000 Subject: [PATCH] efree() if not NULL --- ext/standard/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/file.c b/ext/standard/file.c index e8407ad1ce..b2bed8b8a5 100644 --- a/ext/standard/file.c +++ b/ext/standard/file.c @@ -500,7 +500,7 @@ PHP_FUNCTION(get_meta_tags) } efree(name); - efree(value); + STR_FREE(value); } else if (have_content) { efree(value); } -- 2.50.1