dect
/
asterisk
Archived
13
0
Fork 0

fix the potential use of an uninitialized variable

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@134916 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2008-07-31 19:39:25 +00:00
parent c8ccc483f8
commit 295533fd85
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ struct iax_frame *iax_frame_new(int direction, int datalen, unsigned int cacheab
#if !defined(LOW_MEMORY)
struct iax_frames *iax_frames = NULL;
struct iax_frame *smallest;
struct iax_frame *smallest = NULL;
/* Attempt to get a frame from this thread's cache */
if ((iax_frames = ast_threadstorage_get(&frame_cache, sizeof(*iax_frames)))) {