mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-28 15:11:12 +00:00
issue #5787
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7162 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
2005-11-20 Russell Bryant <russell@digium.com>
|
2005-11-20 Russell Bryant <russell@digium.com>
|
||||||
|
|
||||||
|
* apps/app_record.c: Don't leak a frame if writing it to the file fails. (issue #5787)
|
||||||
|
|
||||||
* Makefile: Create the monitor spool directory when the other spool directories are created.
|
* Makefile: Create the monitor spool directory when the other spool directories are created.
|
||||||
|
|
||||||
* pbx.c.c: Remove some useless checks and unnecessary calls to ast_strlen_zero(). (issue #5805)
|
* pbx.c.c: Remove some useless checks and unnecessary calls to ast_strlen_zero(). (issue #5805)
|
||||||
|
|||||||
@@ -277,6 +277,7 @@ static int record_exec(struct ast_channel *chan, void *data)
|
|||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
ast_log(LOG_WARNING, "Problem writing frame\n");
|
ast_log(LOG_WARNING, "Problem writing frame\n");
|
||||||
|
ast_frfree(f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -295,16 +296,15 @@ static int record_exec(struct ast_channel *chan, void *data)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
} else if (f->frametype == AST_FRAME_VIDEO) {
|
||||||
if (f->frametype == AST_FRAME_VIDEO) {
|
|
||||||
res = ast_writestream(s, f);
|
res = ast_writestream(s, f);
|
||||||
|
|
||||||
if (res) {
|
if (res) {
|
||||||
ast_log(LOG_WARNING, "Problem writing frame\n");
|
ast_log(LOG_WARNING, "Problem writing frame\n");
|
||||||
|
ast_frfree(f);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
} else if ((f->frametype == AST_FRAME_DTMF) &&
|
||||||
if ((f->frametype == AST_FRAME_DTMF) &&
|
|
||||||
(f->subclass == terminator)) {
|
(f->subclass == terminator)) {
|
||||||
ast_frfree(f);
|
ast_frfree(f);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user