mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Avoid undefined behavior
This commit is contained in:
parent
f77747b06c
commit
98df5c97f4
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
|||
#include "zend_multiply.h"
|
||||
#include "zend_object_handlers.h"
|
||||
|
||||
#define LONG_SIGN_MASK (((zend_long)1) << (8*sizeof(zend_long)-1))
|
||||
#define LONG_SIGN_MASK ZEND_LONG_MIN
|
||||
|
||||
BEGIN_EXTERN_C()
|
||||
ZEND_API int ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue