diff --git a/server/TracyWorker.cpp b/server/TracyWorker.cpp index 10ed76fc..7bae7413 100644 --- a/server/TracyWorker.cpp +++ b/server/TracyWorker.cpp @@ -543,11 +543,7 @@ void Worker::DispatchProcess( const QueueItem& ev, char*& ptr ) void Worker::CheckSourceLocation( uint64_t ptr ) { - if( m_data.sourceLocation.find( ptr ) != m_data.sourceLocation.end() ) - { - return; - } - else + if( m_data.sourceLocation.find( ptr ) == m_data.sourceLocation.end() ) { NewSourceLocation( ptr ); }