From: Dmitry Stogov Date: Thu, 15 Jun 2006 10:03:52 +0000 (+0000) Subject: Fixed ZTS build X-Git-Tag: RELEASE_1_0_0RC1~2718 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6bdedcb5bb3ce00daccb797e34796ae83278668;p=php Fixed ZTS build --- diff --git a/ext/unicode/transform.c b/ext/unicode/transform.c index bad23ff66f..6787eda60b 100644 --- a/ext/unicode/transform.c +++ b/ext/unicode/transform.c @@ -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; }