diff options
| author | Mason Reed <mason@vector35.com> | 2025-11-30 16:03:41 -0500 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-12-01 12:31:15 -0500 |
| commit | 4c00d61a7e282d8608ee551483aec25a34bec935 (patch) | |
| tree | b5df411dfe2bfdb52d20182e1d7de60e9bd6560b /plugins/rtti | |
| parent | d730b5f80edae6fe79d23c378b059fbf73525f00 (diff) | |
[RTTI] Skip MSVC VFT sweep if we never collected any class information in the previous pass
Diffstat (limited to 'plugins/rtti')
| -rw-r--r-- | plugins/rtti/microsoft.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |
