Browse Source

Merge topic 'update-kwsys'

2132f2d49b Merge branch 'upstream-KWSys' into update-kwsys
eaf37ffde9 KWSys 2020-09-29 (4a19ed43)

Acked-by: Kitware Robot <[email protected]>
Merge-request: !5293
Brad King 5 years ago
parent
commit
c297b61779
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/kwsys/RegularExpression.cxx

+ 1 - 1
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;