Browse Source

appease MSVC (doesnt like unary minus of unsigned ints)

pull/135/head
Nuno Lopes 14 years ago
parent
commit
b2b018d5f7
  1. 2
      Zend/zend_hash.h

2
Zend/zend_hash.h

@ -331,7 +331,7 @@ END_EXTERN_C()
if (idx-1 > LONG_MAX) { /* overflow */ \
break; \
} \
idx = -idx; \
idx = 0 - idx; \
} else if (idx > LONG_MAX) { /* overflow */ \
break; \
} \

Loading…
Cancel
Save