[svn-commits] irroot: branch irroot/distrotech-customers-1.8 r319201 - in /team/irroot/dist...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon May 16 12:58:46 CDT 2011


Author: irroot
Date: Mon May 16 12:58:42 2011
New Revision: 319201

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=319201
Log:
Resolve Conflicts

Modified:
    team/irroot/distrotech-customers-1.8/   (props changed)
    team/irroot/distrotech-customers-1.8/channels/chan_sip.c

Propchange: team/irroot/distrotech-customers-1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.

Propchange: team/irroot/distrotech-customers-1.8/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Mon May 16 12:58:42 2011
@@ -1,1 +1,1 @@
-/branches/1.8:1-319098
+/branches/1.8:1-319200

Modified: team/irroot/distrotech-customers-1.8/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/irroot/distrotech-customers-1.8/channels/chan_sip.c?view=diff&rev=319201&r1=319200&r2=319201
==============================================================================
--- team/irroot/distrotech-customers-1.8/channels/chan_sip.c (original)
+++ team/irroot/distrotech-customers-1.8/channels/chan_sip.c Mon May 16 12:58:42 2011
@@ -2740,7 +2740,7 @@
 	ast_debug(2, "Shutting down thread for %s server\n", tcptls_session->ssl ? "SSL" : "TCP");
 
 cleanup:
-	if (!tcptls_session->client && !authenticated) {
+	if (tcptls_session && !tcptls_session->client && !authenticated) {
 		ast_atomic_fetchadd_int(&unauth_sessions, -1);
 	}
 
@@ -23728,7 +23728,7 @@
 		const char *unknown_acceptheader = NULL;
 
 		if (authpeer)	/* We do not need the authpeer any more */
-			unref_peer(authpeer, "unref_peer, from handle_request_subscribe (authpeer 2)");
+			authpeer = unref_peer(authpeer, "unref_peer, from handle_request_subscribe (authpeer 2)");
 
 		/* Header from Xten Eye-beam Accept: multipart/related, application/rlmi+xml, application/pidf+xml, application/xpidf+xml */
 		accept = __get_header(req, "Accept", &start);




More information about the svn-commits mailing list