From: Mark Michelson Date: Thu, 10 May 2012 16:13:06 +0000 (+0000) Subject: Close the proper tcptls_session when session creation fails. X-Git-Tag: 10.6.0-rc1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=382fd8b3e7940fae33a156705b41f01515c1ba8e;p=thirdparty%2Fasterisk.git Close the proper tcptls_session when session creation fails. (issue AST-998) Reported by: Thomas Arimont Tested by: Thomas Arimont ........ Merged revisions 366052 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@366053 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 0350cfaff0..b4cda7e0fe 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -26441,7 +26441,7 @@ create_tcptls_session_fail: ao2_t_ref(ca, -1, "failed to create client, getting rid of client tcptls_session arguments"); } if (s->tcptls_session) { - ast_tcptls_close_session_file(tcptls_session); + ast_tcptls_close_session_file(s->tcptls_session); s->fd = -1; ao2_ref(s->tcptls_session, -1); s->tcptls_session = NULL;