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