aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-10 03:58:27 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-10 03:58:27 +0000
commit1d1a2035f2530d7de3383ffd8dffefbe4acce451 (patch)
tree0a230861ce4fd3406c18217904971d2853293a0a /apps/app_meetme.c
parent72d0e8d044eeaffb2c8c0b47dc2bf2dba9278cae (diff)
Make the compiler happy and initialize a variable.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@58669 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 0d4d193d9..9c8fcab2c 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;