diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2017-09-11 23:51:19 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2017-09-11 23:52:14 +0200 |
commit | 77f3cef35ced72f4aa873427ec053763ed3f3771 (patch) | |
tree | b7c274013b7aa5fa68c8c8315bfe8e5e4df06ad9 /ext/bcmath/libbcmath/src | |
parent | 613bac9eb36d9aae6a7d91bd3852865f44106d12 (diff) | |
parent | 87a91aef835c2c361e93b4352636f0dcb3275ac9 (diff) | |
download | php-git-77f3cef35ced72f4aa873427ec053763ed3f3771.tar.gz |
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1:
Fixed bug #46781 (BC math handles minus zero incorrectly)
Diffstat (limited to 'ext/bcmath/libbcmath/src')
-rw-r--r-- | ext/bcmath/libbcmath/src/str2num.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/bcmath/libbcmath/src/str2num.c b/ext/bcmath/libbcmath/src/str2num.c index ef505e86e1..62544de80e 100644 --- a/ext/bcmath/libbcmath/src/str2num.c +++ b/ext/bcmath/libbcmath/src/str2num.c @@ -105,5 +105,8 @@ bc_str2num (bc_num *num, char *str, int scale) for (;strscale > 0; strscale--) *nptr++ = CH_VAL(*ptr++); } + + if (bc_is_zero (*num)) + (*num)->n_sign = PLUS; } |