diff options
Diffstat (limited to 'ext/libxml/php_libxml.h')
-rw-r--r-- | ext/libxml/php_libxml.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/libxml/php_libxml.h b/ext/libxml/php_libxml.h index 60234483cd..a02cc54aff 100644 --- a/ext/libxml/php_libxml.h +++ b/ext/libxml/php_libxml.h @@ -103,17 +103,13 @@ PHP_LIBXML_API void php_libxml_shutdown(void); #define ZVAL_XML_STRING(z, s, flags) { \ UConverter *libxml_utf_conv = NULL; \ - if (UG(unicode)) { \ - libxml_utf_conv = UG(utf8_conv); \ - } \ + libxml_utf_conv = UG(utf8_conv); \ ZVAL_U_STRING(libxml_utf_conv, z, s, flags); \ } #define ZVAL_XML_STRING_LEN(z, s, l, flags) { \ UConverter *libxml_utf_conv = NULL; \ - if (UG(unicode)) { \ - libxml_utf_conv = UG(utf8_conv); \ - } \ + libxml_utf_conv = UG(utf8_conv); \ ZVAL_U_STRINGL(libxml_utf_conv, z, s, l, flags); \ } |