binary GMP functions returns unexpected value, when second parameter is int(0)
| Bug #32773 | binary GMP functions returns unexpected value, when second parameter is int(0) | ||||
|---|---|---|---|---|---|
| Submitted: | 2005-04-19 22:32 UTC | Modified: | 2005-04-25 14:19 UTC | ||
| From: | valyala at gmail dot com | Assigned: | stas (profile) | ||
| Status: | Closed | Package: | Math related | ||
| PHP Version: | 5.0.4 | OS: | unix | ||
| Private report: | No | CVE-ID: | None | ||
[2005-04-19 22:32 UTC] valyala at gmail dot com
Description:
------------
All binary functions from GMP extension return FALSE insted of expected value, when zero is passed as second parameter.
I noticed the following piece of code in two places of ext/gmp/gmp.c file, which purpose I couldn't understand:
if (!Z_LVAL_PP(b_arg)) {
RETURN_FALSE;
}
This code returns FALSE, when second parameter of binary GMP function equals to zero.
I tried to delete this code from ext/gmp/gmp.c , and it seems that all work nice after that.
Here is unified diff:
----------cut----------
--- gmp_old.c Tue Apr 19 23:18:06 2005
+++ gmp.c Tue Apr 19 23:18:28 2005
@@ -312,10 +312,6 @@
FETCH_GMP_ZVAL(gmpnum_b, b_arg);
}
- if (!Z_LVAL_PP(b_arg)) {
- RETURN_FALSE;
- }
-
INIT_GMP_NUM(gmpnum_result);
if (use_ui && gmp_ui_op) {
@@ -355,10 +351,6 @@
use_ui = 1;
} else {
FETCH_GMP_ZVAL(gmpnum_b, b_arg);
- }
-
- if (!Z_LVAL_PP(b_arg)) {
- RETURN_FALSE;
}
INIT_GMP_NUM(gmpnum_result1);
----------cut----------
Reproduce code:
---------------
<?
// all binary functions from GMP extension
// return FALSE insted of expected value,
// when zero is passed as second parameter.
echo '10 + 0 = ', gmp_strval(gmp_add(10, 0)), "\n";
// normal behaviour. Just convert zero into string
echo '10 + "0" = ', gmp_strval(gmp_add(10, '0')), "\n";
?>
Expected result:
----------------
10 + 0 = 10
10 + 0 = 10
Actual result:
--------------
10 + 0 = 0
10 + 0 = 10
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2005-04-25 14:19 UTC] stas@php.net