From bdd7edfa55ea2bdd922f4a94609fa15d674bed73 Mon Sep 17 00:00:00 2001 From: Dmitri-Botcharnikov Date: Wed, 25 May 2016 01:59:24 +0400 Subject: [PATCH] Improve vtbl matching loop in DacGetVtNameW. (#5179) --- src/debug/daccess/dacfn.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/debug/daccess/dacfn.cpp b/src/debug/daccess/dacfn.cpp index 64227da..88d4599 100644 --- a/src/debug/daccess/dacfn.cpp +++ b/src/debug/daccess/dacfn.cpp @@ -1104,6 +1104,7 @@ PWSTR DacGetVtNameW(TADDR targetVtable) if (targetVtable == (*targ + DacGlobalBase())) { pszRet = (PWSTR) *(g_dacVtStrings + (targ - targStart)); + break; } targ++; -- 2.7.4