summaryrefslogtreecommitdiff
path: root/pcre_ucd.c
diff options
context:
space:
mode:
authorMatthew Vernon <matthew@debian.org>2017-03-21 22:01:27 +0000
committerMatthew Vernon <matthew@debian.org>2017-03-21 22:01:27 +0000
commitc4c2c7c4f74d53b263af2471d8e11db88096bd13 (patch)
tree215892bd9e3ca47215f5a4636b2b37f25ee1af55 /pcre_ucd.c
parent0d6f7a2e36f965826f8ebf5dd60ecabcf6824c16 (diff)
Upstream fix for CVE-2017-7186 (Upstream rev 1688)
Fix Unicode property crash for 32-bit characters greater than 0x10ffff.
Diffstat (limited to 'pcre_ucd.c')
-rw-r--r--pcre_ucd.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/pcre_ucd.c b/pcre_ucd.c
index 69c4fd4..f22f826 100644
--- a/pcre_ucd.c
+++ b/pcre_ucd.c
@@ -38,6 +38,20 @@ const pcre_uint16 PRIV(ucd_stage2)[] = {0};
const pcre_uint32 PRIV(ucd_caseless_sets)[] = {0};
#else
+/* If the 32-bit library is run in non-32-bit mode, character values
+greater than 0x10ffff may be encountered. For these we set up a
+special record. */
+
+#ifdef COMPILE_PCRE32
+const ucd_record PRIV(dummy_ucd_record)[] = {{
+ ucp_Common, /* script */
+ ucp_Cn, /* type unassigned */
+ ucp_gbOther, /* grapheme break property */
+ 0, /* case set */
+ 0, /* other case */
+ }};
+#endif
+
/* When recompiling tables with a new Unicode version, please check the
types in this structure definition from pcre_internal.h (the actual
field names will be different):