Module: sip-router Branch: master Commit: 97a899e37acda1ef0c70a009f4fd9d221ee8a58e URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=97a899e3...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: Sun May 19 23:16:55 2013 +0200
seat: removed no longer necessary init of tm uac struct
---
modules/seas/seas_action.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/seas/seas_action.c b/modules/seas/seas_action.c index d1267d5..c5c534d 100644 --- a/modules/seas/seas_action.c +++ b/modules/seas/seas_action.c @@ -1093,8 +1093,9 @@ int ac_uac_req(as_p the_as,unsigned char processor_id,unsigned int flags,char *a this is the same as (TMCB_DONT_ACK|TMCB_LOCAL_RESPONSE_OUT) in Kamailio */
- memset(&uac_r,0, sizeof(uac_req_t)); - set_uac_req(&uac_r, &(my_msg->first_line.u.request.method), &headers, &body, my_dlg,TMCB_DONT_ACK|TMCB_LOCAL_RESPONSE_OUT, uac_cb, (void*)the_param); + set_uac_req(&uac_r, &(my_msg->first_line.u.request.method), &headers, + &body, my_dlg,TMCB_DONT_ACK|TMCB_LOCAL_RESPONSE_OUT, uac_cb, + (void*)the_param);
ret=seas_f.tmb.t_request_within(&uac_r);