[asterisk-commits] mmichelson: trunk r114227 - in /trunk: ./ apps/app_chanspy.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Apr 17 16:04:41 CDT 2008
Author: mmichelson
Date: Thu Apr 17 16:04:40 2008
New Revision: 114227
URL: http://svn.digium.com/view/asterisk?view=rev&rev=114227
Log:
Merged revisions 114226 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r114226 | mmichelson | 2008-04-17 16:03:29 -0500 (Thu, 17 Apr 2008) | 9 lines
Declaration of the peer channel in this scope was making it so the peer variable defined
in the outer scope was never set properly, therefore making iterating through the channel
list always restart from the beginning. This bug would have affected anyone who called
chanspy without specifying a first argument.
(closes issue #12461)
Reported by: stever28
........
Modified:
trunk/ (props changed)
trunk/apps/app_chanspy.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_chanspy.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_chanspy.c?view=diff&rev=114227&r1=114226&r2=114227
==============================================================================
--- trunk/apps/app_chanspy.c (original)
+++ trunk/apps/app_chanspy.c Thu Apr 17 16:04:40 2008
@@ -620,7 +620,6 @@
char *ext;
char *form_enforced;
int ienf = !myenforced;
- struct ast_channel *peer;
peer = peer_chanspy_ds->chan;
More information about the asterisk-commits
mailing list