From: Anthony Minessale Date: Thu, 12 Jul 2012 19:34:56 +0000 (-0500) Subject: how does the older compiler catch things the new one doesnt X-Git-Tag: v1.2.0~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0dfb4db8b494754c84fc3bc8d06d5b9e8b4d45b6;p=thirdparty%2Ffreeswitch.git how does the older compiler catch things the new one doesnt --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 16e22e4039..cec868f204 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -680,7 +680,7 @@ static char *conference_rfc4579_render(conference_obj_t *conference, switch_even switch_mutex_lock(conference->member_mutex); for (np = conference->cdr_nodes; np; np = np->next) { - char *user_uri; + char *user_uri = NULL; switch_channel_t *channel = NULL; if (!np->cp || (np->member && !np->member->session) || np->leave_time) { /* for now we'll remove participants when the leave */