Skip to content
Snippets Groups Projects
Commit 08132bdf authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

Merged revisions 10409 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r10409 | tilghman | 2006-02-17 18:17:09 -0600 (Fri, 17 Feb 2006) | 2 lines

Bug 6529 - memory leak in ast_play_and_prepend

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10410 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent f369bbda
No related branches found
No related tags found
No related merge requests found
......@@ -852,6 +852,7 @@ int ast_play_and_prepend(struct ast_channel *chan, char *playfile, char *recordf
res = ast_set_read_format(chan, AST_FORMAT_SLINEAR);
if (res < 0) {
ast_log(LOG_WARNING, "Unable to set to linear mode, giving up\n");
ast_dsp_free(sildet);
return -1;
}
}
......@@ -956,6 +957,7 @@ int ast_play_and_prepend(struct ast_channel *chan, char *playfile, char *recordf
} else {
ast_log(LOG_WARNING, "Error creating writestream '%s', format '%s'\n", prependfile, sfmt[x]);
}
ast_dsp_free(sildet);
*duration = end - start;
#if 0
if (outmsg > 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment