From: Russell Bryant Date: Thu, 31 Jul 2008 19:39:25 +0000 (+0000) Subject: fix the potential use of an uninitialized variable X-Git-Tag: 1.6.2.0-beta1~1543 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d5979ff7e1ce65c411a7381b4fc167cc68aa6f2;p=thirdparty%2Fasterisk.git fix the potential use of an uninitialized variable git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@134916 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 55c363f66c..010c850563 100644 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -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)))) {