mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
Consolidate ast_channel.cid.cid_rdnis into ast_channel.redirecting.from.number.
SWP-1229 ABE-2161 * Ensure chan_local.c:local_call() will not leak cid.cid_dnid when copying. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@256104 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -183,11 +183,7 @@ static int redirecting_read(struct ast_channel *chan, const char *cmd, char *dat
|
||||
ast_channel_lock(chan);
|
||||
|
||||
if (!strncasecmp("from-", data, 5)) {
|
||||
struct ast_party_id from_id;
|
||||
|
||||
from_id = chan->redirecting.from;
|
||||
from_id.number = chan->cid.cid_rdnis;
|
||||
switch (redirecting_id_read(buf, len, data + 5, &from_id)) {
|
||||
switch (redirecting_id_read(buf, len, data + 5, &chan->redirecting.from)) {
|
||||
case ID_FIELD_VALID:
|
||||
case ID_FIELD_INVALID:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user