Module: sip-router Branch: master Commit: 716932aa77a0f22f00d2ccee8a89cd84b6674f0a URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=716932aa...
Author: Jason Penton jason.penton@smilecoms.com Committer: Jason Penton jason.penton@smilecoms.com Date: Tue Oct 29 09:49:42 2013 +0200
modules/tm: cosmetic fixes and comment fixes
---
modules/tm/t_suspend.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/modules/tm/t_suspend.c b/modules/tm/t_suspend.c index 23fdb03..c9cb01d 100644 --- a/modules/tm/t_suspend.c +++ b/modules/tm/t_suspend.c @@ -384,15 +384,14 @@ done: /* unref the transaction */ t_unref(t->uac[branch].reply); LOG(L_DBG,"DEBUG: t_continue_reply: Freeing earlier cloned reply\n"); - /* free header's parsed structures that were added by failure handlers */
+ /* free lumps that were added during reply processing */ del_nonshm_lump( &(t->uac[branch].reply->add_rm) ); del_nonshm_lump( &(t->uac[branch].reply->body_lumps) ); del_nonshm_lump_rpl( &(t->uac[branch].reply->reply_lump) );
- struct hdr_field* hdr; - struct hdr_field* prev = 0; - struct hdr_field* tmp = 0; + /* free header's parsed structures that were added */ + struct hdr_field *hdr, *prev = 0, *tmp = 0; for( hdr=t->uac[branch].reply->headers ; hdr ; hdr=hdr->next ) { if ( hdr->parsed && hdr_allocs_parse(hdr) && (hdr->parsed<(void*)t->uac[branch].reply ||