[asterisk-commits] tilghman: branch 1.4 r83879 - /branches/1.4/channels/chan_zap.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 26 13:35:57 CDT 2007
Author: tilghman
Date: Wed Sep 26 13:35:56 2007
New Revision: 83879
URL: http://svn.digium.com/view/asterisk?view=rev&rev=83879
Log:
Remove unused 4k of memory on the program stack (closes issue #10827)
Modified:
branches/1.4/channels/chan_zap.c
Modified: branches/1.4/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_zap.c?view=diff&rev=83879&r1=83878&r2=83879
==============================================================================
--- branches/1.4/channels/chan_zap.c (original)
+++ branches/1.4/channels/chan_zap.c Wed Sep 26 13:35:56 2007
@@ -4914,7 +4914,6 @@
{
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 @@
/* 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) {
More information about the asterisk-commits
mailing list