diff options
Diffstat (limited to 'Zend/zend_alloc.c')
| -rw-r--r-- | Zend/zend_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 8e4871f8f5..b1f6841a21 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -103,7 +103,7 @@ ZEND_API zend_alloc_globals alloc_globals; unsigned int real_size; \ unsigned int cache_index; -#define REAL_SIZE(size) ((size+7) & 0xFFFFFFF8) +#define REAL_SIZE(size) ((size+7) & ~0x7) #define CALCULATE_REAL_SIZE_AND_CACHE_INDEX(size) \ real_size = REAL_SIZE(size); \ |
