diff options
Diffstat (limited to 'src/move.c')
-rw-r--r-- | src/move.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -8,7 +8,7 @@ struct ast_pair { #define SPTREE_TYPE struct ast_pair #define SPTREE_CMP(a, b) ((a).def - (b).def) #define SPTREE_NAME moved -#include <fwd/sptree.h> +#include <conts/sptree.h> struct state { struct moved moved; @@ -63,7 +63,9 @@ static struct rm_move remove_move(struct state *state, struct ast *def) struct ast_pair *found = moved_find(&state->moved, search); if (found) { moved_remove_found(&state->moved, found); - return (struct rm_move){.data = *found, .owner = state}; + struct rm_move r = {.data = *found, .owner = state}; + moved_free_found(&state->moved, found); + return r; } return remove_move(state->parent, def); |