Module: kamailio Branch: master Commit: 47b317dddd1de58a850086985e55b242b29bcf47 URL: https://github.com/kamailio/kamailio/commit/47b317dddd1de58a850086985e55b242...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2020-05-21T10:04:44+02:00
tm: updated comments for removed obsolete DYN_BUF define condition
---
Modified: src/modules/tm/uac.c
---
Diff: https://github.com/kamailio/kamailio/commit/47b317dddd1de58a850086985e55b242... Patch: https://github.com/kamailio/kamailio/commit/47b317dddd1de58a850086985e55b242...
---
diff --git a/src/modules/tm/uac.c b/src/modules/tm/uac.c index ec250a8595..f8cee24a6a 100644 --- a/src/modules/tm/uac.c +++ b/src/modules/tm/uac.c @@ -187,12 +187,12 @@ int uac_refresh_hdr_shortcuts(tm_cell_t *tcell, char *buf, int buf_len) tcell->cseq_n.len = (int)(cs->number.s + cs->number.len - lreq.cseq->name.s);
LM_DBG("cseq: [%.*s]\n", tcell->cseq_n.len, tcell->cseq_n.s); - lreq.buf=0; /* covers the obsolete DYN_BUF */ + lreq.buf=0; free_sip_msg(&lreq); return 0;
error: - lreq.buf=0; /* covers the obsolete DYN_BUF */ + lreq.buf=0; free_sip_msg(&lreq); return -1; } @@ -378,7 +378,7 @@ static inline int t_run_local_req( lreq.dst_uri.s=0; lreq.dst_uri.len=0; } - lreq.buf=0; /* covers the obsolete DYN_BUF */ + lreq.buf=0; free_sip_msg(&lreq); return refresh_shortcuts; } @@ -546,7 +546,7 @@ static inline int t_uac_prepare(uac_req_t *uac_r, LM_ERR("failed to parse headers on uas for failover\n"); } else { new_cell->uas.request = sip_msg_cloner(&lreq, &sip_msg_len); - lreq.buf=0; /* covers the obsolete DYN_BUF */ + lreq.buf=0; free_sip_msg(&lreq); if (!new_cell->uas.request) { LM_ERR("no more shmem\n");