summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-11-25 09:02:42 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-11-25 09:02:42 +0000
commitd7b26b6bf8c33653e8a05196b1e3fa1a038a475e (patch)
treed85f03e159a640202aaa829f5cc456a7aea90349
parent7406c1b24286cfd8527d44195745a3daac605a60 (diff)
set pointers to NULL after freeing memory to avoid multiple free()
probably 1.4/1.2 issue as well if someone can look into that. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48001 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/channel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/channel.c b/main/channel.c
index a83de5b53..74b00e73d 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -1027,6 +1027,7 @@ static void free_cid(struct ast_callerid *cid)
free(cid->cid_ani);
if (cid->cid_rdnis)
free(cid->cid_rdnis);
+ cid->cid_dnid = cid->cid_num = cid->cid_name = cid->cid_ani = cid->cid_rdnis = NULL;
}
/*! \brief Free a channel structure */