From e622e28972930bacadd3d02fc08ef2fb0eb32efa Mon Sep 17 00:00:00 2001 From: Andrea Faulds Date: Wed, 27 Aug 2014 19:52:13 +0100 Subject: [PATCH] Fixed constants in Zend/zend_multiply.h Conflicts: Zend/zend_multiply.h --- Zend/zend_multiply.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_multiply.h b/Zend/zend_multiply.h index 3a1a091b0a3..11744c2699f 100644 --- a/Zend/zend_multiply.h +++ b/Zend/zend_multiply.h @@ -85,7 +85,7 @@ #define ZEND_SIGNED_MULTIPLY_LONG(a, b, lval, dval, usedval) do { \ zend_long64 __result = (zend_long64) (a) * (zend_long64) (b); \ - if (__result > ZEND_INT_MAX || __result < ZEND_INT_MIN) { \ + if (__result > ZEND_LONG_MAX || __result < ZEND_LONG_MIN) { \ (dval) = (double) __result; \ (usedval) = 1; \ } else { \