diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2002-12-10 12:51:43 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2002-12-10 12:51:43 +0000 |
commit | ab6f1a632d64f6a5614f8574feec2656dfd84578 (patch) | |
tree | 9f749c46c0a397b788196a9b6b759aac8fd91761 | |
parent | e91067d966f719803dae5db08addf7fa5748462b (diff) | |
download | zsh-ab6f1a632d64f6a5614f8574feec2656dfd84578.tar.gz zsh-ab6f1a632d64f6a5614f8574feec2656dfd84578.tar.xz zsh-ab6f1a632d64f6a5614f8574feec2656dfd84578.zip |
17994: Globbing flags with no effect could hang the shell
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Src/pattern.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 63bf0263b..160791f5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-12-10 Peter Stephenson <pws@csr.com> + + * 17994: Src/pattern.c: A set of globbing flags with no effect + could hang the shell as the pattern wasn't compiled consistently. + 2002-12-06 Felix Rosencrantz <f_rosencrantz@yahoo.com> * 17983: Src/Zle/zle_hist.c, Src/Zle/zle_params.c, Doc/Zsh/zle.yo: diff --git a/Src/pattern.c b/Src/pattern.c index 33c8858a2..71f2f379c 100644 --- a/Src/pattern.c +++ b/Src/pattern.c @@ -688,7 +688,10 @@ patcompbranch(int *flagp) continue; } } - } + } else if (!*patparse) + break; + else + continue; } else if (isset(EXTENDEDGLOB) && *patparse == Hat) { /* * ^pat: anything but pat. For proper backtracking, |