From: Xinchen Hui Date: Fri, 7 Mar 2014 10:01:02 +0000 (+0800) Subject: Fixed bug codes in stream_resolve_include_path.... X-Git-Tag: POST_PHPNG_MERGE~412^2~369 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5edbe296ef5c8dc4570ecfb5a8b38f88af584129;p=php Fixed bug codes in stream_resolve_include_path.... --- diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c index 8dfd08a347..d7ada0dfe1 100644 --- a/ext/standard/streamsfuncs.c +++ b/ext/standard/streamsfuncs.c @@ -1542,6 +1542,7 @@ PHP_FUNCTION(stream_resolve_include_path) //??? RETURN_STRING(resolved_path, 0); RETVAL_STRING(resolved_path); efree(resolved_path); + return; } RETURN_FALSE; }