mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Opaquification for ast_format structs in struct ast_channel
Review: https://reviewboard.asterisk.org/r/1770/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@356573 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -371,8 +371,8 @@ int AST_OPTIONAL_API_NAME(ast_adsi_transmit_message_full)(struct ast_channel *ch
|
||||
struct ast_format writeformat;
|
||||
struct ast_format readformat;
|
||||
|
||||
ast_format_copy(&writeformat, &chan->writeformat);
|
||||
ast_format_copy(&readformat, &chan->readformat);
|
||||
ast_format_copy(&writeformat, ast_channel_writeformat(chan));
|
||||
ast_format_copy(&readformat, ast_channel_readformat(chan));
|
||||
|
||||
for (x = 0; x < msglen; x += (msg[x+1]+2)) {
|
||||
if (msg[x] == ADSI_SWITCH_TO_DATA) {
|
||||
|
||||
Reference in New Issue
Block a user