From 4179e850294ea7555bde4bd5ee88e800a47b5aab Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 2 Jul 2020 17:17:01 +0200 Subject: [PATCH] Add missing parameters. --- client/TracyProfiler.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/TracyProfiler.hpp b/client/TracyProfiler.hpp index 054dee13..db9deb45 100644 --- a/client/TracyProfiler.hpp +++ b/client/TracyProfiler.hpp @@ -393,7 +393,7 @@ public: SendCallstackMemory( callstack ); profiler.m_serialLock.unlock(); #else - MemAlloc( ptr, size ); + MemAlloc( ptr, size, secure ); #endif } @@ -415,7 +415,7 @@ public: SendCallstackMemory( callstack ); profiler.m_serialLock.unlock(); #else - MemFree( ptr ); + MemFree( ptr, secure ); #endif }