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. */
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
svn-commits mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/svn-commits