summaryrefslogtreecommitdiff
path: root/ext/iconv/iconv.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/iconv/iconv.c')
-rw-r--r--ext/iconv/iconv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c
index 87214ef8ff..d1b4d494cb 100644
--- a/ext/iconv/iconv.c
+++ b/ext/iconv/iconv.c
@@ -189,8 +189,6 @@ PHP_FUNCTION(ob_iconv_handler)
{
char *out_buffer;
zval **zv_string, **zv_status;
- SLS_FETCH();
- ICONVLS_FETCH();
if (ZEND_NUM_ARGS()!=2 || zend_get_parameters_ex(2, &zv_string, &zv_status)==FAILURE) {
ZEND_WRONG_PARAM_COUNT();
@@ -219,7 +217,6 @@ PHP_FUNCTION(iconv_set_encoding)
{
zval **type, **charset;
int argc = ZEND_NUM_ARGS();
- ICONVLS_FETCH();
if (argc != 2 || zend_get_parameters_ex(2, &type, &charset) == FAILURE) {
WRONG_PARAM_COUNT;
@@ -257,7 +254,6 @@ PHP_FUNCTION(iconv_get_encoding)
{
zval **type;
int argc = ZEND_NUM_ARGS();
- ICONVLS_FETCH();
if (argc < 0 || argc > 1 || zend_get_parameters_ex(1, &type) == FAILURE) {
WRONG_PARAM_COUNT;