diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 2982fca3..3217764c 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -379,7 +379,10 @@ void SourceView::Render( const Worker& worker ) file = nullptr; line = 0; } - Open( file, line, jumpOut, jumpOut, worker ); + if( line > 0 || sym->size.Val() > 0 ) + { + Open( file, line, jumpOut, jumpOut, worker ); + } } } }