We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8db0c commit eca4fc6Copy full SHA for eca4fc6
ext/intl/msgformat/msgformat_class.c
@@ -96,10 +96,10 @@ zend_object_value MessageFormatter_object_clone(zval *object TSRMLS_DC)
96
if (U_FAILURE(INTL_DATA_ERROR_CODE(mfo))) {
97
intl_errors_set(INTL_DATA_ERROR_P(mfo), INTL_DATA_ERROR_CODE(mfo),
98
"Failed to clone MessageFormatter object", 0 TSRMLS_CC);
99
- zend_throw_exception_ex(NULL, 0, "Failed to clone MessageFormatter object");
+ zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Failed to clone MessageFormatter object");
100
}
101
} else {
102
- zend_throw_exception_ex(NULL, 0, "Cannot clone unconstructed MessageFormatter");
+ zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Cannot clone unconstructed MessageFormatter");
103
104
return new_obj_val;
105
0 commit comments