]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 217368 via svnmerge from
authorOlle Johansson <oej@edvina.net>
Wed, 9 Sep 2009 11:02:28 +0000 (11:02 +0000)
committerOlle Johansson <oej@edvina.net>
Wed, 9 Sep 2009 11:02:28 +0000 (11:02 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

........
r217368 | oej | 2009-09-09 12:39:43 +0200 (Ons, 09 Sep 2009) | 2 lines

Not having any TLS session to write to is a serious XMIT_ERROR.

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@217370 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index b53758fd6eb084df9665c53d0d64e7e005833cb9..7dccd95bda8483bcd70cfb1d2462ed0fe7e7ed3e 100644 (file)
@@ -2937,6 +2937,7 @@ static int __sip_xmit(struct sip_pvt *p, struct ast_str *data, int len)
                        res = ast_tcptls_server_write(p->socket.tcptls_session, data->str, len);
                } else {
                        ast_debug(2, "No p->socket.tcptls_session->f len=%d\n", len);
+                       return XMIT_ERROR;
                }
        } else {
                ast_debug(2, "Socket type is TCP but no tcptls_session is present to write to\n");