diff options
author | Xinchen Hui <laruence@php.net> | 2014-06-29 19:07:06 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-06-29 19:07:06 +0800 |
commit | a94ec141fe35b2e6351f55f8ca796ec4ef332de5 (patch) | |
tree | 11c5159b623690694190c2e7847d24f78b4b7a6f /ext/intl/timezone/timezone_methods.cpp | |
parent | 477f565f80c0c396a99903081851ea6bf2223e0f (diff) | |
download | php-git-a94ec141fe35b2e6351f55f8ca796ec4ef332de5.tar.gz |
Fixed retval with zend_call_method
Diffstat (limited to 'ext/intl/timezone/timezone_methods.cpp')
-rw-r--r-- | ext/intl/timezone/timezone_methods.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/timezone/timezone_methods.cpp b/ext/intl/timezone/timezone_methods.cpp index bef69ba539..c98a03639f 100644 --- a/ext/intl/timezone/timezone_methods.cpp +++ b/ext/intl/timezone/timezone_methods.cpp @@ -436,7 +436,7 @@ U_CFUNC PHP_FUNCTION(intltz_get_id) id_us.getBuffer(), id_us.length(), TIMEZONE_ERROR_CODE_P(to)); INTL_METHOD_CHECK_STATUS(to, "intltz_get_id: Could not convert id to UTF-8"); - RETURN_STRINGL(id, id_len); + RETVAL_STRINGL(id, id_len); //??? efree(id); } |