From 0d6061a5c6c5187e00f374d11196d77b6e3383cb Mon Sep 17 00:00:00 2001 From: russell Date: Wed, 29 Mar 2006 04:09:31 +0000 Subject: [PATCH] conversion from malloc to ast_malloc git-svn-id: http://svn.digium.com/svn/asterisk/trunk@16006 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_iax2.c | 4 ++-- translate.c | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index 409fab52a..265563a52 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -103,11 +103,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") /* Define SCHED_MULTITHREADED to run the scheduler in a special multithreaded mode. */ -#define SCHED_MULTITHREADED +// #define SCHED_MULTITHREADED /* Define DEBUG_SCHED_MULTITHREADED to keep track of where each thread is actually doing. */ -#define DEBUG_SCHED_MULTITHREAD +// #define DEBUG_SCHED_MULTITHREAD #ifdef NEWJB #include "../jitterbuf.h" diff --git a/translate.c b/translate.c index 1ebbc1ff6..69a2a2b59 100644 --- a/translate.c +++ b/translate.c @@ -110,7 +110,7 @@ struct ast_trans_pvt *ast_translator_build_path(int dest, int source) source = powerof(source); dest = powerof(dest); - while(source != dest) { + while (source != dest) { if (!tr_matrix[source][dest].step) { /* We shouldn't have allocated any memory */ ast_log(LOG_WARNING, "No translator path from %s to %s\n", @@ -119,13 +119,12 @@ struct ast_trans_pvt *ast_translator_build_path(int dest, int source) } if (tmp) { - tmp->next = malloc(sizeof(*tmp)); + tmp->next = ast_malloc(sizeof(*tmp)); tmp = tmp->next; } else - tmp = malloc(sizeof(*tmp)); + tmp = ast_malloc(sizeof(*tmp)); if (!tmp) { - ast_log(LOG_WARNING, "Out of memory\n"); if (tmpr) ast_translator_free_path(tmpr); return NULL;