Only muck with the thread structure if an idle one was found/created.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@67304 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp
2007-06-05 15:22:30 +00:00
parent 5a5d549b1d
commit 24922406f4

View File

@@ -888,8 +888,10 @@ static struct iax2_thread *find_idle_thread(void)
/* this thread is not processing a full frame (since it is idle),
so ensure that the field for the full frame call number is empty */
thread->ffcallno = 0;
memset(&thread->ffsin, 0, sizeof(thread->ffsin));
if (thread) {
thread->ffcallno = 0;
memset(&thread->ffsin, 0, sizeof(thread->ffsin));
}
return thread;
}