Compare commits
2 commits
f8540d8cde
...
8c6561cbef
Author | SHA1 | Date | |
---|---|---|---|
8c6561cbef | |||
c4f06b799e |
2 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## Version 2.7
|
||||
|
||||
Fix incorrect initialization.
|
||||
|
||||
## Version 2.6
|
||||
|
||||
Use a more robust mutex (by using `std::recursive_mutex` instead of
|
||||
|
|
|
@ -89,6 +89,8 @@ namespace SC_AM_Internal {
|
|||
malloced_list_head->data = nullptr;
|
||||
malloced_list_tail->data = nullptr;
|
||||
|
||||
deferred_node = nullptr;
|
||||
|
||||
recursive_mutex = real_malloc(sizeof(std::recursive_mutex));
|
||||
void *unused = new(recursive_mutex) std::recursive_mutex{};
|
||||
(void)unused;
|
||||
|
|
Loading…
Reference in a new issue