3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-23 04:19:27 +01:00

Fix potential infinite loop due to not restoring pos value after regex

This commit is contained in:
Pragmatic Software 2013-10-25 07:33:43 +00:00
parent e1588491e3
commit b7b9ce76ca
2 changed files with 4 additions and 2 deletions

View File

@ -13,8 +13,8 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 457,
BUILD_DATE => "2013-10-22",
BUILD_REVISION => 458,
BUILD_DATE => "2013-10-25",
};
1;

View File

@ -720,6 +720,8 @@ while($code =~ m/(.)/msg) {
substr ($code, $pos, 0) = "\n";
pos $code = $pos;
$cpp = 0;
} else {
pos $code = $pos;
}
} elsif($ch eq '"') {
$double_quote = not $double_quote unless $escaped or $single_quote;