[asterisk-commits] kharwell: branch 10 r398004 - /branches/10/apps/app_mixmonitor.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 30 11:15:17 CDT 2013
Author: kharwell
Date: Fri Aug 30 11:15:15 2013
New Revision: 398004
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=398004
Log:
Fix memory leaks
(closes issue ASTERISK-22368)
Reported by: Corey Farrell
Patches:
issueA22368_mixmonitor_free_filename.patch uploaded by wdoekes (license 5674)
Modified:
branches/10/apps/app_mixmonitor.c
Modified: branches/10/apps/app_mixmonitor.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/apps/app_mixmonitor.c?view=diff&rev=398004&r1=398003&r2=398004
==============================================================================
--- branches/10/apps/app_mixmonitor.c (original)
+++ branches/10/apps/app_mixmonitor.c Fri Aug 30 11:15:15 2013
@@ -129,7 +129,7 @@
<variable name="MIXMONITOR_FILENAME">
<para>Will contain the filename used to record.</para>
</variable>
- </variablelist>
+ </variablelist>
</description>
<see-also>
<ref type="application">Monitor</ref>
@@ -307,7 +307,7 @@
ast_audiohook_destroy(&mixmonitor->audiohook);
}
-static int startmon(struct ast_channel *chan, struct ast_audiohook *audiohook)
+static int startmon(struct ast_channel *chan, struct ast_audiohook *audiohook)
{
struct ast_channel *peer = NULL;
int res = 0;
@@ -318,7 +318,7 @@
ast_audiohook_attach(chan, audiohook);
if (!res && ast_test_flag(chan, AST_FLAG_NBRIDGE) && (peer = ast_bridged_channel(chan)))
- ast_softhangup(peer, AST_SOFTHANGUP_UNBRIDGE);
+ ast_softhangup(peer, AST_SOFTHANGUP_UNBRIDGE);
return res;
}
@@ -331,12 +331,14 @@
if (mixmonitor->mixmonitor_ds) {
ast_mutex_destroy(&mixmonitor->mixmonitor_ds->lock);
ast_cond_destroy(&mixmonitor->mixmonitor_ds->destruction_condition);
- ast_free(mixmonitor->filename_write);
- ast_free(mixmonitor->filename_read);
ast_free(mixmonitor->mixmonitor_ds);
- ast_free(mixmonitor->name);
- ast_free(mixmonitor->post_process);
- }
+ }
+ ast_free(mixmonitor->name);
+ ast_free(mixmonitor->post_process);
+ ast_free(mixmonitor->filename);
+ ast_free(mixmonitor->filename_write);
+ ast_free(mixmonitor->filename_read);
+
ast_free(mixmonitor);
}
}
@@ -370,7 +372,7 @@
}
}
-static void *mixmonitor_thread(void *obj)
+static void *mixmonitor_thread(void *obj)
{
struct mixmonitor *mixmonitor = obj;
@@ -532,7 +534,7 @@
static void launch_monitor_thread(struct ast_channel *chan, const char *filename,
unsigned int flags, int readvol, int writevol,
const char *post_process, const char *filename_write,
- const char *filename_read)
+ const char *filename_read)
{
pthread_t thread;
struct mixmonitor *mixmonitor;
@@ -650,7 +652,7 @@
AST_APP_ARG(options);
AST_APP_ARG(post_process);
);
-
+
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "MixMonitor requires an argument (filename or ,t(filename) and/or r(filename)\n");
return -1;
@@ -674,7 +676,7 @@
readvol = get_volfactor(x);
}
}
-
+
if (ast_test_flag(&flags, MUXFLAG_WRITEVOLUME)) {
if (ast_strlen_zero(opts[OPT_ARG_WRITEVOLUME])) {
ast_log(LOG_WARNING, "No volume level was provided for the spoken volume ('V') option.\n");
@@ -684,7 +686,7 @@
writevol = get_volfactor(x);
}
}
-
+
if (ast_test_flag(&flags, MUXFLAG_VOLUME)) {
if (ast_strlen_zero(opts[OPT_ARG_VOLUME])) {
ast_log(LOG_WARNING, "No volume level was provided for the combined volume ('W') option.\n");
@@ -878,7 +880,7 @@
res = ast_unregister_application(stop_app);
res |= ast_unregister_application(app);
res |= ast_manager_unregister("MixMonitorMute");
-
+
return res;
}
More information about the asterisk-commits
mailing list