diff options
author | Rickard Green <[email protected]> | 2017-03-27 15:36:36 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-04-05 14:36:43 +0200 |
commit | 63782b585b5cfc27cf418deb5fbc5e2c75f5cb44 (patch) | |
tree | 084c3a6d81605970e670b5379a3d93203b392201 | |
parent | ecaf4af3464290b985168f999f6443c18a303218 (diff) | |
download | otp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.tar.gz otp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.tar.bz2 otp-63782b585b5cfc27cf418deb5fbc5e2c75f5cb44.zip |
Fix re_SUITE:pcre_compile_workspace_overflow/1
-rw-r--r-- | lib/stdlib/test/re_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/re_SUITE.erl b/lib/stdlib/test/re_SUITE.erl index 52d3a9f797..464027bade 100644 --- a/lib/stdlib/test/re_SUITE.erl +++ b/lib/stdlib/test/re_SUITE.erl @@ -612,7 +612,7 @@ pcre_cve_2008_2371(Config) when is_list(Config) -> %% http://vcs.pcre.org/viewvc/code/trunk/pcre_compile.c?r1=504&r2=505&view=patch pcre_compile_workspace_overflow(Config) when is_list(Config) -> N = 819, - {error,{"internal error: overran compiling workspace",799}} = + {error,{"regular expression is too complicated",799}} = re:compile([lists:duplicate(N, $(), lists:duplicate(N, $))]), ok. |