mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
whoops; really fix the 32-bit builds
This commit is contained in:
+1
-1
@@ -4102,7 +4102,7 @@ have_enough_mem_for_dircache(const or_options_t *options, size_t total_mem,
|
||||
if (total_mem == 0) {
|
||||
if (get_total_system_memory(&total_mem) < 0) {
|
||||
total_mem = options->MaxMemInQueues >= SIZE_MAX ?
|
||||
SIZE_MAX : options->MaxMemInQueues;
|
||||
SIZE_MAX : (size_t)options->MaxMemInQueues;
|
||||
}
|
||||
}
|
||||
if (options->DirCache) {
|
||||
|
||||
Reference in New Issue
Block a user