From: Pierre Joye Date: Thu, 15 May 2014 07:54:52 +0000 (+0200) Subject: RETURN_STRING takes the char* only now X-Git-Tag: POST_PHPNG_MERGE~371 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=526c778e91a5ec1bd49a321fd98d06bc81ac9da2;p=php RETURN_STRING takes the char* only now --- diff --git a/ext/standard/link_win32.c b/ext/standard/link_win32.c index d410d223fb..41ce9d20df 100644 --- a/ext/standard/link_win32.c +++ b/ext/standard/link_win32.c @@ -78,7 +78,7 @@ PHP_FUNCTION(readlink) php_error_docref(NULL TSRMLS_CC, E_WARNING, "readlink failed to read the symbolic link (%s), error %d)", link, GetLastError()); RETURN_FALSE; } - RETURN_STRING(target, 1); + RETURN_STRING(target); } /* }}} */