diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 409fab52a1c6e6a4157a275d9cee5a2465663457..265563a526f752a455fffeeb70304d25da71468c 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 1ebbc1ff67d8d2640a229ab7e1687042c51765a5..69a2a2b591efc6b2b043d1bfdfe3c2f2ec861b4c 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;