Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using ".{$length}" in the regular expression causes an error while compiling the regular expression if the declared length of the stream is over 65534 bytes line: "Quantifier in {,} bigger than 65534 in regex" This is a limitation of Perl's regular expression engine; use a direct substring operation instead to fix this issue so large streams can be parsed successfully.
- Loading branch information