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 4f9c7f9 commit aa8c4f2Copy full SHA for aa8c4f2
Zend/zend_types.h
@@ -331,7 +331,7 @@ struct _zend_array {
331
HT_HASH_EX((ht)->arData, idx)
332
333
#define HT_SIZE_TO_MASK(nTableSize) \
334
- ((uint32_t)(-((nTableSize) + (nTableSize))))
+ (nTableSize <= 8 ? ((uint32_t)(-16)) : (uint32_t)(-((nTableSize) + (nTableSize))))
335
#define HT_HASH_SIZE(nTableMask) \
336
(((size_t)(uint32_t)-(int32_t)(nTableMask)) * sizeof(uint32_t))
337
#define HT_DATA_SIZE(nTableSize) \
travis/compile.sh
@@ -6,5 +6,5 @@
6
--enable-zts \
7
--disable-all
8
9
-make "-j${MAKE_JOBS}" $MAKE_QUIET > "$MAKE_LOG_FILE"
10
-make install >> "$MAKE_LOG_FILE"
+make "-j${MAKE_JOBS}"
+make install
0 commit comments