tor

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

commit 18a4eaf5c142bae55780716464d43c2f8a9e2e49
parent 3e2423d19b78ab71cb1ac8205406c7575296ecd3
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  2 Nov 2018 13:30:55 -0400

Avoid mmap leak if we get a consensus diff we can't use.

Fixes CID 1440819; bug not in any released Tor.

Diffstat:
Msrc/feature/dirclient/dirclient.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/feature/dirclient/dirclient.c b/src/feature/dirclient/dirclient.c @@ -2221,6 +2221,7 @@ handle_response_fetch_consensus(dir_connection_t *conn, if (!consensus_body) { log_warn(LD_DIR, "Received a consensus diff, but we can't find " "any %s-flavored consensus in our current cache.",flavname); + tor_munmap_file(mapped_consensus); networkstatus_consensus_download_failed(0, flavname); // XXXX if this happens too much, see below return -1;