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