summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-09-30 12:09:49 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-09-30 12:09:54 (GMT)
commitc297b61779c6fbfe806e92d7f15af4a7354bb651 (patch)
treed8e6db58adcdccd8ce176d0baffc6e2882ee468c /Source
parent36035559ccc0b9eda288ffc35118c3f2b8056fd3 (diff)
parent2132f2d49ba01fa70864e2c630f4f0f3d61e7a22 (diff)
downloadCMake-c297b61779c6fbfe806e92d7f15af4a7354bb651.zip
CMake-c297b61779c6fbfe806e92d7f15af4a7354bb651.tar.gz
CMake-c297b61779c6fbfe806e92d7f15af4a7354bb651.tar.bz2
Merge topic 'update-kwsys'
2132f2d49b Merge branch 'upstream-KWSys' into update-kwsys eaf37ffde9 KWSys 2020-09-29 (4a19ed43) Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5293
Diffstat (limited to 'Source')
-rw-r--r--Source/kwsys/RegularExpression.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/RegularExpression.cxx b/Source/kwsys/RegularExpression.cxx
index 4f74eba..fb4e380 100644
--- a/Source/kwsys/RegularExpression.cxx
+++ b/Source/kwsys/RegularExpression.cxx
@@ -359,7 +359,7 @@ bool RegularExpression::compile(const char* exp)
this->regmatch.clear();
// Small enough for pointer-storage convention?
- if (comp.regsize >= 32767L) { // Probably could be 65535L.
+ if (comp.regsize >= 65535L) {
// RAISE Error, SYM(RegularExpression), SYM(Expr_Too_Big),
printf("RegularExpression::compile(): Expression too big.\n");
return false;