mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Work around test_status.c weirdness
Ordinarily, get_options() can never return NULL, but with test_status.c mocking, it can. So test for that case. The best fix here would be to pass the options value to a bridge_server_mode() function.
This commit is contained in:
+1
-1
@@ -132,7 +132,7 @@ log_heartbeat(time_t now)
|
||||
|
||||
circuit_log_ancient_one_hop_circuits(1800);
|
||||
|
||||
if (options->BridgeRelay) {
|
||||
if (options && options->BridgeRelay) {
|
||||
char *msg = NULL;
|
||||
msg = format_client_stats_heartbeat(now);
|
||||
if (msg)
|
||||
|
||||
Reference in New Issue
Block a user