mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 15:10:48 +01:00
Replaced some leftover assert()s with tor_assert()s.
This commit is contained in:
parent
db4cde3810
commit
c852760b80
2 changed files with 3 additions and 4 deletions
|
@ -4640,7 +4640,7 @@ transport_create(const tor_addr_t *addr, uint16_t port,
|
|||
int
|
||||
transport_add(transport_t *t)
|
||||
{
|
||||
assert(t);
|
||||
tor_assert(t);
|
||||
|
||||
if (transport_get_by_name(t->name)) { /* check for duplicate names */
|
||||
log_notice(LD_CONFIG, "More than one transports have '%s' as "
|
||||
|
|
|
@ -174,8 +174,7 @@ pt_configure_remaining_proxies(void)
|
|||
log_warn(LD_CONFIG, "We start configuring remaining managed proxies!");
|
||||
SMARTLIST_FOREACH_BEGIN(unconfigured_proxy_list, managed_proxy_t *, mp) {
|
||||
/* configured proxies shouldn't be in unconfigured_proxy_list. */
|
||||
if (proxy_configuration_finished(mp))
|
||||
assert(0);
|
||||
tor_assert(!proxy_configuration_finished(mp));
|
||||
|
||||
configure_proxy(mp);
|
||||
|
||||
|
@ -307,7 +306,7 @@ handle_finished_proxy(managed_proxy_t *mp)
|
|||
default:
|
||||
log_warn(LD_CONFIG, "Unfinished managed proxy in "
|
||||
"handle_finished_proxy().");
|
||||
assert(0);
|
||||
tor_assert(0);
|
||||
}
|
||||
|
||||
tor_assert(smartlist_len(unconfigured_proxy_list) >= 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue