summaryrefslogtreecommitdiffstats
path: root/external/dtoa/ubsan.patch.0
diff options
context:
space:
mode:
Diffstat (limited to 'external/dtoa/ubsan.patch.0')
-rw-r--r--external/dtoa/ubsan.patch.011
1 files changed, 11 insertions, 0 deletions
diff --git a/external/dtoa/ubsan.patch.0 b/external/dtoa/ubsan.patch.0
new file mode 100644
index 000000000..de39d41ac
--- /dev/null
+++ b/external/dtoa/ubsan.patch.0
@@ -0,0 +1,11 @@
+--- src/dtoa.c
++++ src/dtoa.c
+@@ -3618,7 +3618,7 @@
+ while(c == '0')
+ c = *++s;
+ if (c > '0' && c <= '9') {
+- L = c - '0';
++ ULong L = c - '0';
+ s1 = s;
+ while((c = *++s) >= '0' && c <= '9')
+ L = 10*L + c - '0';