From: Joshua Colp Date: Thu, 6 Sep 2007 21:01:10 +0000 (+0000) Subject: Initialize iax_frames variable to NULL, keeps valgrind happy. X-Git-Tag: 1.6.0-beta1~3^2~1502 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5af36757cdbaf003be62b9ee1eca2c0438899033;p=thirdparty%2Fasterisk.git Initialize iax_frames variable to NULL, keeps valgrind happy. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81814 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/iax2-parser.c b/channels/iax2-parser.c index 7357fce72c..b6c4befcc1 100644 --- a/channels/iax2-parser.c +++ b/channels/iax2-parser.c @@ -996,7 +996,7 @@ struct iax_frame *iax_frame_new(int direction, int datalen, unsigned int cacheab struct iax_frame *fr = NULL; #if !defined(LOW_MEMORY) - struct iax_frames *iax_frames; + struct iax_frames *iax_frames = NULL; /* Attempt to get a frame from this thread's cache */ if ((iax_frames = ast_threadstorage_get(&frame_cache, sizeof(*iax_frames)))) { @@ -1040,7 +1040,7 @@ struct iax_frame *iax_frame_new(int direction, int datalen, unsigned int cacheab void iax_frame_free(struct iax_frame *fr) { #if !defined(LOW_MEMORY) - struct iax_frames *iax_frames; + struct iax_frames *iax_frames = NULL; #endif /* Note: does not remove from scheduler! */