diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-26 22:17:51 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-26 22:17:51 +0100 |
| commit | b33bf3f7042464ac4f6e187fc487ee42668fcef7 (patch) | |
| tree | a60151734e843e3efd542267eff16fe071fdb432 /src/main.cpp | |
| parent | 726788a48310971b0df8f431968100786d2f8cab (diff) | |
Correct race condition and incorrect usage of `condition_signal` outside of a mutex lock
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index f94b6bd4f..505451141 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2018,6 +2018,7 @@ int main(int arg_count, char const **arg_ptr) { virtual_memory_init(); mutex_init(&fullpath_mutex); + mutex_init(&hash_exact_value_mutex); init_string_buffer_memory(); init_string_interner(); |