Skip to content

Commit

Permalink
Revert "tm: Fix crash in t_uac_dlg (uninitialized stack var)"
Browse files Browse the repository at this point in the history
This reverts commit 061b758.
  • Loading branch information
bogdan-iancu committed May 28, 2019
1 parent 74ff59d commit 862a9ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/tm/mi.c
Expand Up @@ -378,8 +378,8 @@ static mi_response_t *mi_tm_uac_dlg(const mi_params_t *params, str *nexthop,
str method;
str ruri;
str hdrs;
str s = STR_NULL;
str callid = STR_NULL;
str s;
str callid = {0,0};
int sip_error;
int proto = PROTO_NONE;
int port = 0;
Expand Down

0 comments on commit 862a9ea

Please sign in to comment.