Просмотр исходного кода

Fixed cache->jit memory leak

1. `cache->jit = new randomx::JitCompiler();` - succeeds
2. `cache->memory = (uint8_t*)randomx::LargePageAllocator::allocMemory(randomx::CacheSize);` - fails
3. `if (cache && cache->memory == nullptr) randomx_release_cache(cache);` is executed
4. randomx_release_cache checks `if (cache->memory != nullptr)` and does nothing
5. cache->jit stays allocated
SChernykh 4 лет назад
Родитель
Сommit
166e0d80f5
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      src/randomx.cpp

+ 1 - 3
src/randomx.cpp

@@ -134,9 +134,7 @@ extern "C" {
 
 	void randomx_release_cache(randomx_cache* cache) {
 		assert(cache != nullptr);
-		if (cache->memory != nullptr) {
-			cache->dealloc(cache);
-		}
+		cache->dealloc(cache);
 		delete cache;
 	}