Merge pull request #6036 from cj-zoltan-kiss/zoltankiss/globfix

parser: if closing square bracket not found, stop looking for it again
This commit is contained in:
Sylvestre Ledru 2024-03-11 19:51:18 +01:00 committed by GitHub
commit 93b1abff39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,7 +18,11 @@ fn fix_negation(glob: &str) -> String {
while i + 3 < chars.len() {
if chars[i] == '[' && chars[i + 1] == '^' {
match chars[i + 3..].iter().position(|x| *x == ']') {
None => (),
None => {
// if closing square bracket not found, stop looking for it
// again
break;
}
Some(j) => {
chars[i + 1] = '!';
i += j + 4;
@ -90,6 +94,11 @@ mod tests {
assert_eq!(fix_negation("[[]] [^a]"), "[[]] [!a]");
assert_eq!(fix_negation("[[] [^a]"), "[[] [!a]");
assert_eq!(fix_negation("[]] [^a]"), "[]] [!a]");
// test that we don't look for closing square brackets unnecessarily
// Verifies issue #5584
let chars = std::iter::repeat("^[").take(174571).collect::<String>();
assert_eq!(fix_negation(chars.as_str()), chars);
}
#[test]