mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
fix q command
This commit is contained in:
parent
961c6c19da
commit
b08e3e8c2e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user