[asterisk-commits] coreyfarrell: branch 13 r427181 - /branches/13/main/app.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Nov 4 08:09:51 CST 2014
Author: coreyfarrell
Date: Tue Nov 4 08:09:43 2014
New Revision: 427181
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=427181
Log:
Fix crash caused by merge error on review 4138
When merging from 12 to 13 there were conflicts,
I mistakenly had the loop run ast_closestream(others[0])
when it should be ast_closestream(others[x]).
Modified:
branches/13/main/app.c
Modified: branches/13/main/app.c
URL: http://svnview.digium.com/svn/asterisk/branches/13/main/app.c?view=diff&rev=427181&r1=427180&r2=427181
==============================================================================
--- branches/13/main/app.c (original)
+++ branches/13/main/app.c Tue Nov 4 08:09:43 2014
@@ -1793,7 +1793,7 @@
break;
}
if (!realfiles[x]) {
- ast_closestream(others[0]);
+ ast_closestream(others[x]);
continue;
}
/*!\note Same logic as above. */
More information about the asterisk-commits
mailing list