From: Mark Michelson Date: Thu, 10 May 2012 16:10:18 +0000 (+0000) Subject: Close the proper tcptls_session when session creation fails. X-Git-Tag: 1.8.14.0-rc1~3^2~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=965dd3a7d8743eedb8c412b708225ea430f52247;p=thirdparty%2Fasterisk.git Close the proper tcptls_session when session creation fails. (issue AST-998) Reported by: Thomas Arimont Tested by: Thomas Arimont git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@366052 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 1463fe62b8..29fbd7b846 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -25590,7 +25590,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;