From 0cc8e29eb116a56a79d8f03d676abc5a181b4ebb Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 6 Nov 2025 12:29:25 +0100 Subject: [PATCH] Fix copy pasta. --- profiler/src/profiler/TracySourceContents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracySourceContents.cpp b/profiler/src/profiler/TracySourceContents.cpp index 5de22a92..e43fd686 100644 --- a/profiler/src/profiler/TracySourceContents.cpp +++ b/profiler/src/profiler/TracySourceContents.cpp @@ -69,7 +69,7 @@ void SourceContents::Parse( const char* fileName, const Worker& worker, const Vi void SourceContents::Parse( const char* source ) { if( source == m_data ) return; - Parse( m_data, strlen( source ) ); + Parse( source, strlen( source ) ); } void SourceContents::Parse( const char* source, size_t len )