From efcb227198fffb560c7d6209516e58d38eb5381c Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 18 Apr 2007 20:36:54 +0000 Subject: [PATCH] MFH --- ext/gmp/gmp.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ext/gmp/gmp.c b/ext/gmp/gmp.c index 43edc53d9f..f71ab753ef 100644 --- a/ext/gmp/gmp.c +++ b/ext/gmp/gmp.c @@ -1484,6 +1484,11 @@ ZEND_FUNCTION(gmp_setbit) break; } + if (index < 0) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Index must be greater than or equal to zero"); + return; + } + if (set) { mpz_setbit(*gmpnum_a, index); } else { @@ -1508,6 +1513,11 @@ ZEND_FUNCTION(gmp_clrbit) convert_to_long_ex(ind_arg); index = Z_LVAL_PP(ind_arg); + + if (index < 0) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Index must be greater than or equal to zero"); + return; + } mpz_clrbit(*gmpnum_a, index); } -- 2.50.1