summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2006-03-08 00:33:29 +0000
committersabetts <sabetts>2006-03-08 00:33:29 +0000
commitc37b647396a065eb4928257452c785f148bcae50 (patch)
tree7764a74ae892e2c7b6feb48697a9e80786cf5c30 /src/actions.c
parent8460497f0ed5ea8a6b7f0029243a26713a36cc47 (diff)
downloadratpoison-c37b647396a065eb4928257452c785f148bcae50.zip
* src/main.c (clean_up): properly free rp_frame_numset
* src/editor.c (editor_enter): free line->buffer before setting it to the history expansion. * src/completions.c (completions_free): free the rp_completions struct too * src/actions.c (del_frame_undo): free the rp_frame_undo struct too.
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c
index 741b69c..c41ac91 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -376,6 +376,7 @@ del_frame_undo (rp_frame_undo *u)
if (!u) return;
if (u->frames) free (u->frames);
list_del (&(u->node));
+ free (u);
rp_num_frame_undos--; /* decrement counter */
}