From: Antony Dovgal Date: Thu, 21 Dec 2006 00:46:51 +0000 (+0000) Subject: fix potential leak X-Git-Tag: RELEASE_1_0_0RC1~588 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50791bce7678ae2a32f7d04524c205fd45a4b768;p=php fix potential leak --- diff --git a/main/streams/memory.c b/main/streams/memory.c index c1716cf445..0474363aeb 100644 --- a/main/streams/memory.c +++ b/main/streams/memory.c @@ -688,6 +688,7 @@ static php_stream * php_stream_url_wrap_rfc2397(php_stream_wrapper *wrapper, cha ts->mode = mode && mode[0] == 'r' ? TEMP_STREAM_READONLY : 0; ts->meta = meta; } + efree(comma); return stream; }