tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 62b709bc26fe628777d2af4becdf08fd8adf1140
parent f25323fe3f64fbfee0e1c2614d0e13befe283b88
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 20 Sep 2018 12:53:39 -0400

Release ownership of the dummy socket that tortls_nss.c will close

Related to #27795 -- since NSS will close the socket, we must not
count it as owned by Tor.

Diffstat:
Msrc/lib/tls/tortls_nss.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/lib/tls/tortls_nss.c b/src/lib/tls/tortls_nss.c @@ -456,6 +456,9 @@ tor_tls_release_socket(tor_tls_t *tls) } PR_ChangeFileDescNativeHandle(tcp, sock); + /* Tell our socket accounting layer that we don't own this socket any more: + * NSS is about to free it for us. */ + tor_release_socket_ownership(sock); } void