Be sure to heap-allocate the redirecting to tag so as not to cause crashiness.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@263860 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson 2010-05-18 21:09:41 +00:00
parent a21192f4a7
commit 7814913d86
1 changed files with 4 additions and 1 deletions

View File

@ -17540,6 +17540,10 @@ static void change_redirecting_information(struct sip_pvt *p, struct sip_request
ast_free(redirecting->from.tag);
}
redirecting->from.tag = ast_strdup(p->cid_tag);
if (redirecting->to.tag) {
ast_free(redirecting->to.tag);
}
redirecting->to.tag = ast_strdup(p->cid_tag);
}
if (!ast_strlen_zero(redirecting_to_number)) {
if (redirecting->to.number) {
@ -17555,7 +17559,6 @@ static void change_redirecting_information(struct sip_pvt *p, struct sip_request
ast_debug(3, "Got redirecting to name %s\n", redirecting_from_number);
redirecting->to.name = redirecting_to_name;
}
redirecting->to.tag = (char *) p->cid_tag;
redirecting->reason = reason;
}