Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-08-24 18:45:50 +0400
committerMatt Kraai <kraai@debian.org>2001-08-24 18:45:50 +0400
commita0065d5955133f0b20864e966dfc692fe41aed2b (patch)
tree8baad7a565ba34772da3f8a7d7c88cf7aa9daaf6 /sed.c
parent31b35a16e060960dd035010190059a3ec4ff50f7 (diff)
Fix s/[/]// handling (noted by Dumas Patrice).
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/sed.c b/sed.c
index 4fe882d20..989df7cb4 100644
--- a/sed.c
+++ b/sed.c
@@ -144,8 +144,21 @@ static void destroy_cmd_strs()
*/
static int index_of_next_unescaped_regexp_delim(struct sed_cmd *sed_cmd, const char *str, int idx)
{
+ int bracket = -1;
+ int escaped = 0;
+
for ( ; str[idx]; idx++) {
- if (str[idx] == sed_cmd->delimiter && str[idx-1] != '\\')
+ if (bracket != -1) {
+ if (str[idx] == ']' && !(bracket == idx - 1 ||
+ (bracket == idx - 2 && str[idx-1] == '^')))
+ bracket = -1;
+ } else if (escaped)
+ escaped = 0;
+ else if (str[idx] == '\\')
+ escaped = 1;
+ else if (str[idx] == '[')
+ bracket = idx;
+ else if (str[idx] == sed_cmd->delimiter)
return idx;
}