Skip to content

Commit eca4fc6

Browse files
committed
ZTS fix introduced by Felipe must also go into 5.3
1 parent 6a8db0c commit eca4fc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/intl/msgformat/msgformat_class.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ zend_object_value MessageFormatter_object_clone(zval *object TSRMLS_DC)
9696
if (U_FAILURE(INTL_DATA_ERROR_CODE(mfo))) {
9797
intl_errors_set(INTL_DATA_ERROR_P(mfo), INTL_DATA_ERROR_CODE(mfo),
9898
"Failed to clone MessageFormatter object", 0 TSRMLS_CC);
99-
zend_throw_exception_ex(NULL, 0, "Failed to clone MessageFormatter object");
99+
zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Failed to clone MessageFormatter object");
100100
}
101101
} else {
102-
zend_throw_exception_ex(NULL, 0, "Cannot clone unconstructed MessageFormatter");
102+
zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Cannot clone unconstructed MessageFormatter");
103103
}
104104
return new_obj_val;
105105
}

0 commit comments

Comments
 (0)