commit 2fba43c842d3d744ad16b194b21b38f28b5ba5ae
parent 934f9687bbae3a85de5e85f6e063ead0a9bf3853
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 23 May 2005 17:14:46 +0000
free magichistory when we don't need it anymore
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2534 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/winio.c b/src/winio.c
@@ -2569,10 +2569,14 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
}
/* We finished putting in an answer or ran a normal shortcut's
- * associated function, so reset statusbar_x. */
+ * associated function, so free msgichistory if we need to and reset
+ * statusbar_x. */
if (kbinput == NANO_CANCEL_KEY || kbinput == NANO_ENTER_KEY ||
- ran_func)
+ ran_func) {
+ if (magichistory != NULL)
+ free(magichistory);
statusbar_x = (size_t)-1;
+ }
return kbinput;
}