From: Johannes Schlüter Date: Mon, 16 May 2011 19:46:32 +0000 (+0000) Subject: - Fix possible memory leak X-Git-Tag: php-5.3.7RC1~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ea582a76c1a049d731c0b771932a4405ca4ee22;p=php - Fix possible memory leak # Found by parfait - http://labs.oracle.com/projects/parfait/ --- diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 3c768d3be4..6fdf9eb994 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -1079,6 +1079,7 @@ static int tsrm_realpath_r(char *path, int start, int len, int *ll, time_t *t, i } if (is_dir && !directory) { /* not a directory */ + tsrm_free_alloca(tmp, use_heap); return -1; } }