]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Bug 7268 - Callerid leaks memory on error
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 6 Jun 2006 16:02:43 +0000 (16:02 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 6 Jun 2006 16:02:43 +0000 (16:02 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@32582 65c4cc65-6c06-0410-ace0-fbb531ad65f3

callerid.c

index a0937b24af16e53dd9383cd7e96a2b40f1e9e541..f709bd501796223874d06507470a5c887965d6f5 100644 (file)
@@ -274,6 +274,7 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
                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;
                }
                buf += (olen - mylen);
@@ -307,6 +308,7 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
                        case 4: /* Retrieve message */
                                if (cid->pos >= 128) {
                                        ast_log(LOG_WARNING, "Caller ID too long???\n");
+                                       free(obuf);
                                        return -1;
                                }
                                cid->rawdata[cid->pos++] = b;
@@ -392,6 +394,7 @@ int callerid_feed(struct callerid_state *cid, unsigned char *ubuf, int len, int
                                        strcpy(cid->name, "");
                                        cid->flags |= CID_UNKNOWN_NAME;
                                }
+                               free(obuf);
                                return 1;
                                break;
                        default: