diff options
author | Anatol Belski <ab@php.net> | 2016-09-01 22:52:43 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-09-01 23:45:31 +0200 |
commit | a9890918801f867b0e7ab9996c51312581512c48 (patch) | |
tree | 6ea304ced80f4abd7f06cc1a3a64c3063c43eb4e /ext/iconv/iconv.c | |
parent | 0382a64fdff04207480586ad8ec1a0b0f47fc46e (diff) | |
download | php-git-a9890918801f867b0e7ab9996c51312581512c48.tar.gz |
remove useless assignment
Diffstat (limited to 'ext/iconv/iconv.c')
-rw-r--r-- | ext/iconv/iconv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index 99a24d78bc..ab51dd046a 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -720,7 +720,6 @@ PHP_ICONV_API php_iconv_err_t php_iconv_string(const char *in_p, size_t in_len, default: /* other error */ - retval = PHP_ICONV_ERR_UNKNOWN; zend_string_free(out_buf); return PHP_ICONV_ERR_UNKNOWN; } |