summaryrefslogtreecommitdiff
path: root/callerid.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-07-23 00:27:26 +0000
committerMark Spencer <markster@digium.com>2004-07-23 00:27:26 +0000
commit832da92bdc0f74d230ab3cb13aee95ffc8255f10 (patch)
treea1059d462d9791fdc8daf35f1b1eab77a6a38d8b /callerid.c
parente85731555d6d773a3b71c6503d4d69293f6efb70 (diff)
Demand more information on callerid to prevent possible overruns
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3494 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'callerid.c')
-rwxr-xr-xcallerid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/callerid.c b/callerid.c
index 544345bea..283a5dee8 100755
--- a/callerid.c
+++ b/callerid.c
@@ -186,7 +186,7 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
mylen += cid->oldlen/2;
for (x=0;x<len;x++)
buf[x+cid->oldlen/2] = AST_XLAW(ubuf[x]);
- while(mylen >= 80) {
+ while(mylen >= 160) {
olen = mylen;
res = fsk_serie(&cid->fskd, buf, &mylen, &b);
if (mylen < 0) {