From: Dmitry Stogov Date: Fri, 19 Aug 2005 07:49:41 +0000 (+0000) Subject: ZTS fix X-Git-Tag: PRE_NEW_OCI8_EXTENSION~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b5ebdde1d2737c1c395dbce7478abd64fb18b7b;p=php ZTS fix --- diff --git a/ext/standard/array.c b/ext/standard/array.c index 9f2aef6d09..10a2f8955e 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -1732,7 +1732,7 @@ PHP_FUNCTION(range) } /* Unify types */ - str_type = zend_get_unified_string_type(2, Z_TYPE_P(zlow), Z_TYPE_P(zhigh)); + str_type = zend_get_unified_string_type(2 TSRMLS_CC, Z_TYPE_P(zlow), Z_TYPE_P(zhigh)); if (str_type == (zend_uchar)-1) { zend_error(E_WARNING, "Cannot mix binary and Unicode parameters"); return;