From: Russell Bryant Date: Sat, 10 Mar 2007 03:58:27 +0000 (+0000) Subject: Make the compiler happy and initialize a variable. X-Git-Tag: 1.4.2~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=442c9f222f6b39cde7bd52dde08253c3b7a05739;p=thirdparty%2Fasterisk.git Make the compiler happy and initialize a variable. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@58669 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 0d4d193d93..9c8fcab2c5 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -3356,7 +3356,7 @@ static void sla_handle_dial_state_event(void) struct sla_ringing_station *ringing_station; AST_LIST_TRAVERSE_SAFE_BEGIN(&sla.ringing_stations, ringing_station, entry) { - struct sla_trunk_ref *s_trunk_ref; + struct sla_trunk_ref *s_trunk_ref = NULL; struct sla_ringing_trunk *ringing_trunk = NULL; struct run_station_args args; enum ast_dial_result dial_res;