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 9e76501 commit 2c388a4Copy full SHA for 2c388a4
Zend/zend_execute.h
@@ -228,7 +228,7 @@ static inline void *zend_vm_stack_alloc(size_t size TSRMLS_DC)
228
int extra = (ZEND_MM_ALIGNMENT - ((zend_uintptr_t)EG(argument_stack)->top & (ZEND_MM_ALIGNMENT - 1))) / sizeof(void*);
229
230
if (UNEXPECTED(size + extra + ZEND_MM_ALIGNED_SIZE(sizeof(void*)) / sizeof(void*) >
231
- EG(argument_stack)->end - EG(argument_stack)->top)) {
+ (zend_uintptr_t)EG(argument_stack)->end - (zend_uintptr_t)EG(argument_stack)->top)) {
232
zend_vm_stack_extend(size TSRMLS_CC);
233
} else {
234
void **old_top = EG(argument_stack)->top;
0 commit comments