aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-09-15 04:55:29 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-09-15 04:55:29 +0000
commit640c1f547f49a574342306578852bdfe42b32542 (patch)
tree2c46c53fff2fc3d63d3ec53c7288739d773713b5
parentba5eb27ce3de593e18345caa34128fbffdde9e1d (diff)
downloadbusybox-w32-640c1f547f49a574342306578852bdfe42b32542.tar.gz
busybox-w32-640c1f547f49a574342306578852bdfe42b32542.tar.bz2
busybox-w32-640c1f547f49a574342306578852bdfe42b32542.zip
Fix recursion problem
-rw-r--r--editors/sed.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/sed.c b/editors/sed.c
index 43395b392..b73d660ed 100644
--- a/editors/sed.c
+++ b/editors/sed.c
@@ -1014,6 +1014,8 @@ static void process_file(FILE * file)
1014 } else { 1014 } else {
1015 sed_cmd = branch_to(sed_cmd->label); 1015 sed_cmd = branch_to(sed_cmd->label);
1016 } 1016 }
1017 /* Reset the substitution flag */
1018 substituted = 0;
1017 } 1019 }
1018 break; 1020 break;
1019 case 'y':{ 1021 case 'y':{