Skip to content

Commit

Permalink
Fix possible defect in handling \r\n in scripts (#5685)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Mar 9, 2017
1 parent 69fb773 commit 8953c7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ CHANGELOG Roundcube Webmail
- Add rewrite rule to disable access to /vendor/bin folder in .htaccess (#5630)
- Fix bug where it was too easy accidentally move a folder when using the subscription checkbox (#5655)
- Managesieve: Fix parser issue with empty lines between comments (#5657)
- Managesieve: Fix possible defect in handling \r\n in scripts (#5685)
- Fix/rephrase "unsaved changes" warning when cancelling a draft (#5610)

RELEASE 1.3-beta
Expand Down
1 change: 1 addition & 0 deletions plugins/managesieve/Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
- Fix handling of scripts with nested rules (#5540)
- Fix possible defect in handling \r\n in scripts (#5685)

* version 8.8 [2016-11-27]
-----------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion plugins/managesieve/lib/Roundcube/rcube_sieve_script.php
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ static function tokenize($str, $num = 0, &$position = 0)
if ($str[$position] == "\n") {
$position++;
}
else if ($str[$position] == "\r" && $str[$position] == "\n") {
else if ($str[$position] == "\r" && $str[$position + 1] == "\n") {
$position += 2;
}

Expand Down

0 comments on commit 8953c7a

Please sign in to comment.