Skip to content

Commit

Permalink
tm: fix useless uninitialized warning
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Feb 22, 2017
1 parent 4c40ae7 commit abe2837
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/tm/t_msgbuilder.c
Expand Up @@ -833,6 +833,7 @@ char* build_uac_req(str* method, str* headers, str* body, dlg_t* dialog,
mf.s = int2str( dialog->mf_value, &mf.len);
*len += LOCAL_MAXFWD_PREFIX_LEN + mf.len + CRLF_LEN;
} else {
mf.len = 0; mf.s = NULL;
*len += LOCAL_MAXFWD_HEADER_LEN;
}
/* Content-Length */
Expand Down

0 comments on commit abe2837

Please sign in to comment.