From d7f01e051b8907671d49b55100046410bb0939cd Mon Sep 17 00:00:00 2001
From: Joshua Colp <jcolp@digium.com>
Date: Tue, 11 Apr 2006 20:51:45 +0000
Subject: [PATCH] No need to do this in here any longer since the linkedlists
 macro is fixed

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19305 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 channels/chan_iax2.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 33152b13ee..56ae4c03eb 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -847,7 +847,6 @@ static struct iax2_thread *find_idle_thread(void)
 	thread = AST_LIST_FIRST(&idle_list);
 	if (thread != NULL) {
 		AST_LIST_REMOVE(&idle_list, thread, list);
-		thread->list.next = NULL;
 	}
 	AST_LIST_UNLOCK(&idle_list);
 
@@ -857,7 +856,6 @@ static struct iax2_thread *find_idle_thread(void)
 		thread = AST_LIST_FIRST(&dynamic_list);
 		if (thread != NULL) {
 			AST_LIST_REMOVE(&dynamic_list, thread, list);
-			thread->list.next = NULL;
 		}
 		/* Make sure we absolutely have a thread... if not, try to make one if allowed */
 		if (thread == NULL && iaxmaxthreadcount > iaxdynamicthreadcount) {
@@ -8024,7 +8022,6 @@ static void *iax2_process_thread(void *data)
 		/* Now... remove ourselves from the active list, and return to the idle list */
 		AST_LIST_LOCK(&active_list);
 		AST_LIST_REMOVE(&active_list, thread, list);
-		thread->list.next = NULL;
 		AST_LIST_UNLOCK(&active_list);
 
 		/* Go back into our respective list */
-- 
GitLab