From 01db1421449692c73ae95ceda2ff6fb8103c7a58 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 25 Nov 2021 22:23:28 +0100 Subject: [PATCH] Rpmalloc is initialized here. --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index 7f8ebc41..1a457eb8 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -2429,7 +2429,7 @@ Profiler::DequeueStatus Profiler::Dequeue( moodycamel::ConsumerToken& token ) auto threadName = (const char*)MemRead( &item->externalNameMetadata.threadName ); SendString( thread, threadName, QueueType::ExternalThreadName ); SendString( thread, name, QueueType::ExternalName ); - tracy_free( (void*)threadName ); + tracy_free_fast( (void*)threadName ); tracy_free_fast( (void*)name ); ++item; continue;