mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
MSVC build issue: it can't tell that tor_assert(0) aborts.
This commit is contained in:
+2
-1
@@ -778,7 +778,8 @@ create_unix_sockaddr(const char *listenaddress, char **readable_address,
|
||||
"Unix domain sockets not supported, yet we tried to create one.");
|
||||
*len_out = 0;
|
||||
tor_assert(0);
|
||||
};
|
||||
return NULL;
|
||||
}
|
||||
#endif /* HAVE_SYS_UN_H */
|
||||
|
||||
/** Warn that an accept or a connect has failed because we're running up
|
||||
|
||||
@@ -1463,8 +1463,10 @@ networkstatus_get_latest_consensus_by_flavor(consensus_flavor_t f)
|
||||
return current_ns_consensus;
|
||||
else if (f == FLAV_MICRODESC)
|
||||
return current_md_consensus;
|
||||
else
|
||||
else {
|
||||
tor_assert(0);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
/** Return the most recent consensus that we have downloaded, or NULL if it is
|
||||
|
||||
Reference in New Issue
Block a user