aboutsummaryrefslogtreecommitdiffstats
path: root/main/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/utils.c')
-rw-r--r--main/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/utils.c b/main/utils.c
index 498184a41..7570ca608 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -539,7 +539,7 @@ static void *dummy_start(void *data)
keep a copy of the pointer and then ast_unregister_thread will
free the memory
*/
- free(data);
+ ast_free(data);
ast_register_thread(a.name);
pthread_cleanup_push(ast_unregister_thread, (void *) pthread_self());
ret = a.start_routine(a.data);