1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00

Fixed ZTS build

This commit is contained in:
Dmitry Stogov
2006-06-15 10:03:52 +00:00
parent a0c41f3e95
commit f6bdedcb5b
+2 -2
View File
@@ -63,7 +63,7 @@ PHP_FUNCTION(transliterate)
}
if (id_len < 0) {
php_error_docref("", E_WARNING, "Transliterator ID too long");
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Transliterator ID too long");
return;
}
@@ -71,7 +71,7 @@ PHP_FUNCTION(transliterate)
trans = utrans_openU(id, id_len, UTRANS_FORWARD, NULL, 0, NULL, &status);
if (U_FAILURE(status)) {
php_error_docref("", E_WARNING, "Failed to create transliterator");
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to create transliterator");
return;
}