mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-16 04:36:49 +00:00
Remove unused 4k of memory on the program stack (closes issue #10827)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@83879 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4914,7 +4914,6 @@ static int zt_write(struct ast_channel *ast, struct ast_frame *frame)
|
||||
{
|
||||
struct zt_pvt *p = ast->tech_pvt;
|
||||
int res;
|
||||
unsigned char outbuf[4096];
|
||||
int index;
|
||||
index = zt_get_index(ast, p, 0);
|
||||
if (index < 0) {
|
||||
@@ -4968,10 +4967,6 @@ static int zt_write(struct ast_channel *ast, struct ast_frame *frame)
|
||||
/* Return if it's not valid data */
|
||||
if (!frame->data || !frame->datalen)
|
||||
return 0;
|
||||
if (frame->datalen > sizeof(outbuf) * 2) {
|
||||
ast_log(LOG_WARNING, "Frame too large\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (frame->subclass == AST_FORMAT_SLINEAR) {
|
||||
if (!p->subs[index].linear) {
|
||||
|
||||
Reference in New Issue
Block a user