aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_externalivr.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_externalivr.c')
-rw-r--r--apps/app_externalivr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/app_externalivr.c b/apps/app_externalivr.c
index 7f2071630..f08e42ac2 100644
--- a/apps/app_externalivr.c
+++ b/apps/app_externalivr.c
@@ -136,7 +136,7 @@ static void gen_release(struct ast_channel *chan, void *data)
struct gen_state *state = data;
gen_closestream(state);
- free(data);
+ ast_free(data);
}
/* caller has the playlist locked */
@@ -399,7 +399,7 @@ static int app_exec(struct ast_channel *chan, void *data)
AST_LIST_LOCK(&u->finishlist);
while ((entry = AST_LIST_REMOVE_HEAD(&u->finishlist, list))) {
send_child_event(child_events, 'F', entry->filename, chan);
- free(entry);
+ ast_free(entry);
}
AST_LIST_UNLOCK(&u->finishlist);
}
@@ -422,7 +422,7 @@ static int app_exec(struct ast_channel *chan, void *data)
AST_LIST_LOCK(&u->playlist);
while ((entry = AST_LIST_REMOVE_HEAD(&u->playlist, list))) {
send_child_event(child_events, 'D', entry->filename, chan);
- free(entry);
+ ast_free(entry);
}
if (!u->playing_silence)
u->abort_current_sound = 1;
@@ -467,7 +467,7 @@ static int app_exec(struct ast_channel *chan, void *data)
AST_LIST_LOCK(&u->playlist);
while ((entry = AST_LIST_REMOVE_HEAD(&u->playlist, list))) {
send_child_event(child_events, 'D', entry->filename, chan);
- free(entry);
+ ast_free(entry);
}
if (!u->playing_silence)
u->abort_current_sound = 1;
@@ -569,7 +569,7 @@ static int app_exec(struct ast_channel *chan, void *data)
close(child_stderr[1]);
while ((entry = AST_LIST_REMOVE_HEAD(&u->playlist, list)))
- free(entry);
+ ast_free(entry);
ast_module_user_remove(lu);