From 4c00d61a7e282d8608ee551483aec25a34bec935 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 30 Nov 2025 16:03:41 -0500 Subject: [RTTI] Skip MSVC VFT sweep if we never collected any class information in the previous pass --- plugins/rtti/microsoft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/rtti/microsoft.cpp') diff --git a/plugins/rtti/microsoft.cpp b/plugins/rtti/microsoft.cpp index 8c0d65e7..86875b25 100644 --- a/plugins/rtti/microsoft.cpp +++ b/plugins/rtti/microsoft.cpp @@ -727,7 +727,7 @@ void MicrosoftRTTIProcessor::ProcessVFT() } } - if (virtualFunctionTableSweep) + if (virtualFunctionTableSweep && !m_classInfo.empty()) { BinaryReader optReader = BinaryReader(m_view); auto addrSize = m_view->GetAddressSize(); -- cgit v1.3.1