mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
* ext/bigdecimal/bigdecimal.c (VpAlloc): Fix the expr to adjust the size
of the digit array. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ff3e585014
commit
b6f664686e
2 changed files with 8 additions and 1 deletions
|
@ -3816,7 +3816,9 @@ VpAlloc(size_t mx, const char *szVal)
|
|||
size_t mf = VpGetPrecLimit();
|
||||
VALUE buf;
|
||||
|
||||
mx = (mx + BASE_FIG - 1) / BASE_FIG + 1; /* Determine allocation unit. */
|
||||
mx = (mx + BASE_FIG - 1) / BASE_FIG; /* Determine allocation unit. */
|
||||
if (mx == 0) ++mx;
|
||||
|
||||
if (szVal) {
|
||||
while (ISSPACE(*szVal)) szVal++;
|
||||
if (*szVal != '#') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue