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
1.4
Tilghman Lesher 18 years ago
parent 20e50a731b
commit 51601e2e1f

@ -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) {

Loading…
Cancel
Save