From d7b26b6bf8c33653e8a05196b1e3fa1a038a475e Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Sat, 25 Nov 2006 09:02:42 +0000 Subject: [PATCH] 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 --- main/channel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main/channel.c b/main/channel.c index a83de5b53b..74b00e73d0 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 */ -- 2.47.2