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 aea6edd commit 42840f6Copy full SHA for 42840f6
ext/mysqlnd/mysqlnd_portability.h
@@ -108,7 +108,7 @@ This file is public domain and comes with NO WARRANTY of any kind */
108
*/
109
110
/* Optimized store functions for Intel x86, non-valid for WIN64. __i386__ is GCC */
111
-#if defined(__i386__) && !defined(_WIN64)
+#if SIZEOF_ZEND_LONG == 4 && defined(__i386__) && !defined(_WIN64)
112
#define sint2korr(A) (*((int16_t *) (A)))
113
#define sint3korr(A) ((int32_t) ((((zend_uchar) (A)[2]) & 128) ? \
114
(((uint32_t) 255L << 24) | \
0 commit comments