summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorLiubov Dmitrieva <ldmitrie@sourceware.org>2013-09-19 16:51:13 +0400
committerLiubov Dmitrieva <ldmitrie@sourceware.org>2013-09-19 16:52:04 +0400
commitd84f25c7d871dac31ed3ef136ebfb80d3ac73601 (patch)
tree2f6ed0e5bceb36e2429d0557f57c7a9cd840cc32 /stdlib
parent7849ff938cf30d6a381ee864048bc0b3e8c96475 (diff)
Fix buffer overrun in strtod_l
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/strtod_l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c
index 8f60653fb0..90541cd48f 100644
--- a/stdlib/strtod_l.c
+++ b/stdlib/strtod_l.c
@@ -1752,7 +1752,7 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
got_limb;
}
- for (i = densize; num[i] == 0 && i >= 0; --i)
+ for (i = densize; i >= 0 && num[i] == 0; --i)
;
return round_and_return (retval, exponent - 1, negative,
quot, BITS_PER_MP_LIMB - 1 - used,