From 3fbc2c80367453d23c3c7b6f2de8260db5385bcc Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 4 Jun 2020 19:54:11 +0200 Subject: [PATCH] Increase buffer size. --- server/TracySourceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index a10b0d7f..3b8ec7b9 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -2430,7 +2430,7 @@ void SourceView::RenderAsmLine( AsmLine& line, uint32_t ipcnt, uint32_t iptotal, ImGui::SameLine(); const auto lineString = RealToString( srcline ); const auto linesz = strlen( lineString ); - char buf[32]; + char buf[64]; const auto fnsz = strlen( fileName ); if( fnsz < 30 - m_maxLine ) {