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

Fixes CID 1440819; bug not in any released Tor.
This commit is contained in:
Nick Mathewson 2018-11-02 13:30:55 -04:00
parent 3e2423d19b
commit 18a4eaf5c1

View File

@ -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;