Comment assert out

Verbose, libcurl free's null blocks.
This commit is contained in:
Kawe Mazidjatari 2023-06-18 12:06:28 +02:00
parent 4f7280ab4c
commit 0a6fc26529

View File

@ -25,7 +25,7 @@ extern "C" void* R_malloc(size_t nSize)
extern "C" void R_free(void* pBlock)
{
Assert(pBlock);
//Assert(pBlock);
MemAllocSingleton()->Free(pBlock);
}