mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 15:11:55 +00:00
fix minor problem in previous strtod non-nearest rounding bug fix
commit 6ffdc4579f
set lnz in the code
path for non-zero digits after a huge string of zeros, but the
assignment of dc to lnz truncates if the value of dc does not fit in
int; this is possible for some pathologically long inputs, either via
strings on 64-bit systems or via scanf-family functions.
instead, simply set lnz to match the point at which we add the
artificial trailing 1 bit to simulate nonzero digits after a huge
run of zeros.
This commit is contained in:
@ -111,7 +111,7 @@ static long double decfloat(FILE *f, int c, int bits, int emin, int sign, int po
|
|||||||
} else {
|
} else {
|
||||||
dc++;
|
dc++;
|
||||||
if (c!='0') {
|
if (c!='0') {
|
||||||
lnz = dc;
|
lnz = (KMAX-4)*9;
|
||||||
x[KMAX-4] |= 1;
|
x[KMAX-4] |= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user