summaryrefslogtreecommitdiffstats
path: root/external/expat/ubsan.patch.0
diff options
context:
space:
mode:
Diffstat (limited to 'external/expat/ubsan.patch.0')
-rw-r--r--external/expat/ubsan.patch.011
1 files changed, 11 insertions, 0 deletions
diff --git a/external/expat/ubsan.patch.0 b/external/expat/ubsan.patch.0
new file mode 100644
index 000000000..8317f922d
--- /dev/null
+++ b/external/expat/ubsan.patch.0
@@ -0,0 +1,11 @@
+--- lib/xmlparse.c
++++ lib/xmlparse.c
+@@ -6485,7 +6485,7 @@
+ static void FASTCALL
+ hashTableIterInit(HASH_TABLE_ITER *iter, const HASH_TABLE *table) {
+ iter->p = table->v;
+- iter->end = iter->p + table->size;
++ iter->end = table->size == 0 ? iter->p : iter->p + table->size;
+ }
+
+ static NAMED *FASTCALL