[asterisk-commits] mmichelson: trunk r395810 - /trunk/main/abstract_jb.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jul 30 16:43:31 CDT 2013
Author: mmichelson
Date: Tue Jul 30 16:43:29 2013
New Revision: 395810
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=395810
Log:
Remove ast_bridged_channel call from abstract_jb.c
Interestingly, this only happens in dead code.
Modified:
trunk/main/abstract_jb.c
Modified: trunk/main/abstract_jb.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/abstract_jb.c?view=diff&rev=395810&r1=395809&r2=395810
==============================================================================
--- trunk/main/abstract_jb.c (original)
+++ trunk/main/abstract_jb.c Tue Jul 30 16:43:29 2013
@@ -409,7 +409,6 @@
struct ast_jb_conf *jbconf = &jb->conf;
const struct ast_jb_impl *jbimpl = jb->impl;
void *jbobj;
- struct ast_channel *bridged;
long now;
char logfile_pathname[20 + AST_JB_IMPL_NAME_SIZE + 2*AST_CHANNEL_NAME + 1];
char name1[AST_CHANNEL_NAME], name2[AST_CHANNEL_NAME], *tmp;
@@ -442,14 +441,15 @@
/* Create a frame log file */
if (ast_test_flag(jbconf, AST_JB_LOG)) {
+ RAII_VAR(struct ast_channel *, bridged, ast_channel_bridge_peer(chan), ast_channel_cleanup);
char safe_logfile[30] = "/tmp/logfile-XXXXXX";
int safe_fd;
+
snprintf(name2, sizeof(name2), "%s", ast_channel_name(chan));
if ((tmp = strchr(name2, '/'))) {
*tmp = '#';
}
- bridged = ast_bridged_channel(chan);
/* We should always have bridged chan if a jitterbuffer is in use */
ast_assert(bridged != NULL);
More information about the asterisk-commits
mailing list