[svn-commits] russell: branch 1.4 r58669 -
/branches/1.4/apps/app_meetme.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri Mar 9 20:58:28 MST 2007
Author: russell
Date: Fri Mar 9 21:58:27 2007
New Revision: 58669
URL: http://svn.digium.com/view/asterisk?view=rev&rev=58669
Log:
Make the compiler happy and initialize a variable.
Modified:
branches/1.4/apps/app_meetme.c
Modified: branches/1.4/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=58669&r1=58668&r2=58669
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Fri Mar 9 21:58:27 2007
@@ -3356,7 +3356,7 @@
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;
More information about the svn-commits
mailing list