mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Replaced some leftover assert()s with tor_assert()s.
This commit is contained in:
@@ -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 "
|
||||
|
||||
+2
-3
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user