From 50791bce7678ae2a32f7d04524c205fd45a4b768 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 21 Dec 2006 00:46:51 +0000 Subject: [PATCH] fix potential leak --- main/streams/memory.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.50.1