aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/pcre/pcre_dfa_exec.c
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2018-09-06 15:33:36 +0200
committerRickard Green <[email protected]>2018-09-06 15:33:36 +0200
commit2917410f3e2baa7fdd9c276c91040b42e6d08ec1 (patch)
tree8327de963ae97a7e5254dacd5bdcfb9e1ea3f4d7 /erts/emulator/pcre/pcre_dfa_exec.c
parentea908f25c2e6f98c2bed977c8fd4fa459315520b (diff)
parentd4d6ed058530e5db26782dea4a0fd62c2d1098c4 (diff)
downloadotp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.tar.gz
otp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.tar.bz2
otp-2917410f3e2baa7fdd9c276c91040b42e6d08ec1.zip
Merge branch 'maint'
* maint: Update PCRE from version 8.41 to version 8.42
Diffstat (limited to 'erts/emulator/pcre/pcre_dfa_exec.c')
-rw-r--r--erts/emulator/pcre/pcre_dfa_exec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/emulator/pcre/pcre_dfa_exec.c b/erts/emulator/pcre/pcre_dfa_exec.c
index c859d67fc7..c101656fd7 100644
--- a/erts/emulator/pcre/pcre_dfa_exec.c
+++ b/erts/emulator/pcre/pcre_dfa_exec.c
@@ -2288,12 +2288,14 @@ for (;;)
case OP_NOTI:
if (clen > 0)
{
- unsigned int otherd;
+ pcre_uint32 otherd;
#ifdef SUPPORT_UTF
if (utf && d >= 128)
{
#ifdef SUPPORT_UCP
otherd = UCD_OTHERCASE(d);
+#else
+ otherd = d;
#endif /* SUPPORT_UCP */
}
else