From 8c805b4eb19cf2af689c860b77e6111d2ee439d5 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 21 Sep 2016 15:21:04 +0200 Subject: [PATCH] Fix bug 697140: Overflow check in ascii division in strtod. --- jsdtoa.c | 1 + 1 file changed, 1 insertion(+) diff --git a/jsdtoa.c b/jsdtoa.c index 2e52368..920c1a7 100644 --- a/jsdtoa.c +++ b/jsdtoa.c @@ -735,6 +735,7 @@ xx: n -= c<= Ndig) break; /* abort if overflowing */ } *p = 0; }