Error introduced when refactoring zend_alloc code into zend_bitset.
references). (Nikita, Laruence)
. Fixed bug #73663 ("Invalid opcode 65/16/8" occurs with a variable created
with list()). (Laruence)
+ . Fixed bug #73727 (ZEND_MM_BITSET_LEN is "undefined symbol" in
+ zend_bitset.h). (Nikita)
- COM:
. Fixed bug #73679 (DOTNET read access violation using invalid codepage).
if (!BitScanForward(&index, num)) {
#endif
/* undefined behavior */
- return 32;
+ return SIZEOF_ZEND_LONG * 8;
}
return (int) index;
#else
int n;
- if (num == Z_UL(0)) return ZEND_MM_BITSET_LEN;
+ if (num == Z_UL(0)) return SIZEOF_ZEND_LONG * 8;
n = 1;
#if SIZEOF_ZEND_LONG == 8