aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 14:02:37 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 14:02:37 +0000
commit6684300685a522806ef79f763bae912e6295b53e (patch)
tree7668abaa42e0db7fcff87f3ad7b3dcc77c59fb50 /main
parentc49a21a45ba0e5fba90569158516f92f92b2b924 (diff)
Add the missing call to free described in issue #8268. Also, add a bunch of
missing calls to free in callerid_feed_jp(). git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@46883 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/callerid.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/main/callerid.c b/main/callerid.c
index 98cb7d081..f7745bd49 100644
--- a/main/callerid.c
+++ b/main/callerid.c
@@ -300,12 +300,13 @@ int callerid_feed_jp(struct callerid_state *cid, unsigned char *ubuf, int len, i
buf[x+cid->oldlen/2] = AST_XLAW(ubuf[x]);
while (mylen >= 160) {
- b = b2 = 0 ;
+ b = b2 = 0;
olen = mylen;
res = fsk_serie(&cid->fskd, buf, &mylen, &b);
if (mylen < 0) {
ast_log(LOG_ERROR, "fsk_serie made mylen < 0 (%d)\n", mylen);
+ free(obuf);
return -1;
}
@@ -313,6 +314,7 @@ int callerid_feed_jp(struct callerid_state *cid, unsigned char *ubuf, int len, i
if (res < 0) {
ast_log(LOG_NOTICE, "fsk_serie failed\n");
+ free(obuf);
return -1;
}
@@ -384,6 +386,7 @@ int callerid_feed_jp(struct callerid_state *cid, unsigned char *ubuf, int len, i
cid->len = b;
if ( (cid->len+2) >= sizeof( cid->rawdata ) ) {
ast_log(LOG_WARNING, "too long caller id string\n" ) ;
+ free(obuf);
return -1;
}
cid->rawdata[cid->pos++] = b;
@@ -406,6 +409,7 @@ int callerid_feed_jp(struct callerid_state *cid, unsigned char *ubuf, int len, i
cid->sawflag = 12;
if ( cid->crc != 0 ) {
ast_log(LOG_WARNING, "crc checksum error\n" ) ;
+ free(obuf);
return -1;
}
/* extract caller id data */
@@ -515,6 +519,7 @@ int callerid_feed_jp(struct callerid_state *cid, unsigned char *ubuf, int len, i
break ;
}
}
+ free(obuf);
return 1;
break;
default:
@@ -563,6 +568,7 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
buf += (olen - mylen);
if (res < 0) {
ast_log(LOG_NOTICE, "fsk_serie failed\n");
+ free(obuf);
return -1;
}
if (res == 1) {