summaryrefslogtreecommitdiff
path: root/ext/intl
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-11-21 17:41:33 +0000
committerFelipe Pena <felipe@php.net>2010-11-21 17:41:33 +0000
commitf327f13204e08ca999fa6ae171528301e15ebbe9 (patch)
tree392a7d576201ab84ebac11ccae54004dfa075217 /ext/intl
parentdabb79bf3d4d4b77422483cb88cce20fdc6f9605 (diff)
downloadphp-git-f327f13204e08ca999fa6ae171528301e15ebbe9.tar.gz
- Fixed ZTS build
Diffstat (limited to 'ext/intl')
-rwxr-xr-xext/intl/dateformat/dateformat_format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/dateformat/dateformat_format.c b/ext/intl/dateformat/dateformat_format.c
index 79a679ed6b..4d03d924c8 100755
--- a/ext/intl/dateformat/dateformat_format.c
+++ b/ext/intl/dateformat/dateformat_format.c
@@ -170,7 +170,7 @@ PHP_FUNCTION(datefmt_format)
INIT_ZVAL(retval);
MAKE_STD_ZVAL(zfuncname);
ZVAL_STRING(zfuncname, "getTimestamp", 1);
- if(call_user_function(NULL, &zarg, zfuncname, &retval, 0, NULL) != SUCCESS || Z_TYPE(retval) != IS_LONG) {
+ if(call_user_function(NULL, &zarg, zfuncname, &retval, 0, NULL TSRMLS_CC) != SUCCESS || Z_TYPE(retval) != IS_LONG) {
intl_errors_set(INTL_DATA_ERROR_P(dfo), U_ILLEGAL_ARGUMENT_ERROR, "datefmt_format: cannot get timestamp", 0 TSRMLS_CC );
zval_ptr_dtor(&zfuncname);
RETURN_FALSE;