mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Disable stats requiring geoip info if we have none
In other parts of the code we will otherwise attempt to collect these statistics, and that will lead to crashes.
This commit is contained in:
parent
cf8bffa359
commit
dfdb4fde1a
@ -1425,6 +1425,7 @@ options_act(or_options_t *old_options)
|
||||
geoip_dirreq_stats_init(now);
|
||||
print_notice = 1;
|
||||
} else {
|
||||
options->DirReqStatistics = 0;
|
||||
log_notice(LD_CONFIG, "Configured to measure directory request "
|
||||
"statistics, but no GeoIP database found! "
|
||||
"Please specify a GeoIP database using the "
|
||||
@ -1437,6 +1438,7 @@ options_act(or_options_t *old_options)
|
||||
geoip_entry_stats_init(now);
|
||||
print_notice = 1;
|
||||
} else {
|
||||
options->EntryStatistics = 0;
|
||||
log_notice(LD_CONFIG, "Configured to measure entry node "
|
||||
"statistics, but no GeoIP database found! "
|
||||
"Please specify a GeoIP database using the "
|
||||
|
Loading…
Reference in New Issue
Block a user