mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
Don't pass null to manager_event()
(closes issue #17087) Reported by: bklang Patches: app-fax-null-sprintf1.diff uploaded by mnicholson (license 96) Tested by: bklang git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@269083 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -227,8 +227,8 @@ static void phase_e_handler(t30_state_t *f, void *user_data, int result)
|
||||
|
||||
s->finished = 1;
|
||||
|
||||
local_ident = t30_get_tx_ident(f);
|
||||
far_ident = t30_get_rx_ident(f);
|
||||
local_ident = S_OR(t30_get_tx_ident(f), "");
|
||||
far_ident = S_OR(t30_get_rx_ident(f), "");
|
||||
pbx_builtin_setvar_helper(s->chan, "FAXSTATUS", "SUCCESS");
|
||||
pbx_builtin_setvar_helper(s->chan, "FAXERROR", NULL);
|
||||
pbx_builtin_setvar_helper(s->chan, "REMOTESTATIONID", far_ident);
|
||||
|
Reference in New Issue
Block a user