Merged revisions 58669 via svnmerge from
authorRussell Bryant <russell@russellbryant.com>
Sat, 10 Mar 2007 04:01:07 +0000 (04:01 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sat, 10 Mar 2007 04:01:07 +0000 (04:01 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r58669 | russell | 2007-03-09 21:58:27 -0600 (Fri, 09 Mar 2007) | 2 lines

Make the compiler happy and initialize a variable.

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@58670 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_meetme.c

index 925fe7b..b12e2e4 100644 (file)
@@ -3366,7 +3366,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;