aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-25 18:01:20 +0000
committerEric Andersen <andersen@codepoet.org>2000-07-25 18:01:20 +0000
commitb040d4f3da1545225b9a58301deb29acee6aa7f3 (patch)
treef029b6d39fc4619a8369094efd4c558b10f3d927 /shell
parentb9ea02c04b91773e6e5a116313b360f3499a2d4e (diff)
downloadbusybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.gz
busybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.bz2
busybox-w32-b040d4f3da1545225b9a58301deb29acee6aa7f3.zip
Use BB_FEATURE_CLEAN_UP where appropriate
-Erik
Diffstat (limited to 'shell')
-rw-r--r--shell/cmdedit.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 0de18e81f..0ce64beeb 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -115,6 +115,18 @@ void cmdedit_reset_term(void)
115 if (reset_term) 115 if (reset_term)
116 /* sparc and other have broken termios support: use old termio handling. */ 116 /* sparc and other have broken termios support: use old termio handling. */
117 setTermSettings(fileno(stdin), (void*) &initial_settings); 117 setTermSettings(fileno(stdin), (void*) &initial_settings);
118#ifdef BB_FEATURE_CLEAN_UP
119 if (his_front) {
120 struct history *n;
121 //while(his_front!=his_end) {
122 while(his_front!=his_end) {
123 n = his_front->n;
124 free(his_front->s);
125 free(his_front);
126 his_front=n;
127 }
128 }
129#endif
118} 130}
119 131
120void clean_up_and_die(int sig) 132void clean_up_and_die(int sig)