aboutsummaryrefslogtreecommitdiff
path: root/cmdedit.c
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 /cmdedit.c
parentb9ea02c04b91773e6e5a116313b360f3499a2d4e (diff)
downloadbusybox-b040d4f3da1545225b9a58301deb29acee6aa7f3.tar.gz
Use BB_FEATURE_CLEAN_UP where appropriate
-Erik
Diffstat (limited to 'cmdedit.c')
-rw-r--r--cmdedit.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/cmdedit.c b/cmdedit.c
index 0de18e81f..0ce64beeb 100644
--- a/cmdedit.c
+++ b/cmdedit.c
@@ -115,6 +115,18 @@ void cmdedit_reset_term(void)
if (reset_term)
/* sparc and other have broken termios support: use old termio handling. */
setTermSettings(fileno(stdin), (void*) &initial_settings);
+#ifdef BB_FEATURE_CLEAN_UP
+ if (his_front) {
+ struct history *n;
+ //while(his_front!=his_end) {
+ while(his_front!=his_end) {
+ n = his_front->n;
+ free(his_front->s);
+ free(his_front);
+ his_front=n;
+ }
+ }
+#endif
}
void clean_up_and_die(int sig)