summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-05-06 13:19:10 +0000
committerNuno Lopes <nlopess@php.net>2006-05-06 13:19:10 +0000
commit50cf480153d77afaf84cb5bc991a0ac34e83120c (patch)
treefbe8b1781c65bd8074e48e3d02c51f5dd7b57378
parentf7b62e24307cb6f12bc528a239246e17dd49f159 (diff)
downloadphp-git-50cf480153d77afaf84cb5bc991a0ac34e83120c.tar.gz
fix thread safe build
-rw-r--r--ext/tidy/tidy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c
index 8bfb875d43..f82bd25510 100644
--- a/ext/tidy/tidy.c
+++ b/ext/tidy/tidy.c
@@ -900,7 +900,7 @@ static int _php_tidy_apply_config_array(TidyDoc doc, HashTable *ht_options TSRML
break;
case HASH_KEY_IS_UNICODE:
- opt_name.s = zend_unicode_to_ascii(opt_name.u, opt_name_len);
+ opt_name.s = zend_unicode_to_ascii(opt_name.u, opt_name_len TSRMLS_CC);
if (!opt_name.s) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not convert key from the option array");
return FAILURE;