[asterisk-commits] jpeeler: trunk r156290 - in /trunk: ./ apps/app_meetme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Nov 12 13:11:16 CST 2008
Author: jpeeler
Date: Wed Nov 12 13:11:15 2008
New Revision: 156290
URL: http://svn.digium.com/view/asterisk?view=rev&rev=156290
Log:
Merged revisions 156289 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r156289 | jpeeler | 2008-11-12 13:10:12 -0600 (Wed, 12 Nov 2008) | 3 lines
For whatever reason, gcc only warned me about the possible use of an uninitialized variable when compiling 1.6.1.
........
Modified:
trunk/ (props changed)
trunk/apps/app_meetme.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_meetme.c?view=diff&rev=156290&r1=156289&r2=156290
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Wed Nov 12 13:11:15 2008
@@ -1698,7 +1698,7 @@
break;
}
- for (; !conf->announcethread_stop && (current = AST_LIST_REMOVE_HEAD(&local_list, entry)); ao2_ref(current, -1)) {
+ for (res = 1; !conf->announcethread_stop && (current = AST_LIST_REMOVE_HEAD(&local_list, entry)); ao2_ref(current, -1)) {
ast_log(LOG_DEBUG, "About to play %s\n", current->namerecloc);
if (!ast_fileexists(current->namerecloc, NULL, NULL))
continue;
More information about the asterisk-commits
mailing list