From 017ba063cdcb92c8353f9dfffca1330fda3c7c0c Mon Sep 17 00:00:00 2001 From: bug1 Date: Fri, 28 Mar 2003 04:57:52 +0000 Subject: fix q command git-svn-id: svn://busybox.net/trunk/busybox@6763 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- editors/sed.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/editors/sed.c b/editors/sed.c index 5fe435622..78d46091f 100644 --- a/editors/sed.c +++ b/editors/sed.c @@ -848,8 +848,11 @@ static void process_file(FILE *file) } break; case 'q': /* Branch to end of script and quit */ - free(line); - return; + deleted = 1; + /* Exit the outer while loop */ + free(next_line); + next_line = NULL; + break; case 'n': /* Read next line from input */ free(line); line = next_line; -- cgit v1.2.3-55-g6feb