We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b98bd commit 4b1491aCopy full SHA for 4b1491a
ext/iconv/iconv.c
@@ -55,7 +55,7 @@
55
#include "ext/standard/quot_print.h"
56
57
#define _php_iconv_memequal(a, b, c) \
58
- ((c) == sizeof(zend_ulong) ? *((zend_ulong *)(a)) == *((zend_ulong *)(b)) : ((c) == sizeof(unsigned int) ? *((unsigned int *)(a)) == *((unsigned int *)(b)) : memcmp(a, b, c) == 0))
+ (memcmp(a, b, c) == 0)
59
60
/* {{{ arginfo */
61
ZEND_BEGIN_ARG_INFO_EX(arginfo_iconv_strlen, 0, 0, 1)
0 commit comments