diff options
author | Stanislav Malyshev <stas@php.net> | 2018-04-23 16:48:27 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2018-04-23 16:48:27 -0700 |
commit | ee76a5ae5ad57bb9d0bc183bcbf9c4652331c2e3 (patch) | |
tree | 079693b48f3a13b9920178e29a7d01514ae8cf10 /ext/iconv | |
parent | 58b00039759bea3af3a056c234eb476b2cc9b949 (diff) | |
download | php-git-ee76a5ae5ad57bb9d0bc183bcbf9c4652331c2e3.tar.gz |
Fix tsrm_ls
Diffstat (limited to 'ext/iconv')
-rw-r--r-- | ext/iconv/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index fca5331541..335dbd17e9 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -2673,7 +2673,7 @@ static int php_iconv_stream_filter_append_bucket( break; } } else { - php_error_docref(NULL, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_charset); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "iconv stream filter (\"%s\"=>\"%s\"): invalid multibyte sequence", self->from_charset, self->to_charset); goto out_failure; } break; |