mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 11:23:26 +01:00
Merge pull request #3695
b1a9e97b
slow-hash: fix memory leak for Windows /karbowanec#41 (aivve)
This commit is contained in:
commit
26cae8f4f1
@ -524,7 +524,7 @@ void slow_hash_free_state(void)
|
||||
else
|
||||
{
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
VirtualFree(hp_state, MEMORY, MEM_RELEASE);
|
||||
VirtualFree(hp_state, 0, MEM_RELEASE);
|
||||
#else
|
||||
munmap(hp_state, MEMORY);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user