From 2fdfc38a287daae6f56e4b0efd1c269aa4113687 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Sat, 8 Feb 2020 06:12:45 -0800 Subject: [PATCH] Fixed dictionary dbgvis - size vs stride issue --- IDEHelper/WinDebugger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IDEHelper/WinDebugger.cpp b/IDEHelper/WinDebugger.cpp index f731e426..a19d83aa 100644 --- a/IDEHelper/WinDebugger.cpp +++ b/IDEHelper/WinDebugger.cpp @@ -5740,8 +5740,8 @@ String WinDebugger::GetDictionaryItems(DbgCompileUnit* dbgCompileUnit, DebugVisu count = -1; return ""; } - int entrySize = entriesPtr.mType->mTypeParam->GetByteCount(); - int bucketIdxSize = bucketsPtr.mType->mTypeParam->GetByteCount(); + int entrySize = entriesPtr.mType->mTypeParam->GetStride(); + int bucketIdxSize = bucketsPtr.mType->mTypeParam->GetStride(); String addrs;