1
0
Fork 0

DBG: fix a mistake in MemUpdateMap

closes #2101
This commit is contained in:
Duncan Ogilvie 2019-01-20 20:44:10 +01:00
parent 85e96353cb
commit 9f5ce5041d
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ void MemUpdateMap()
// Read TEB::Tib to get stack information
NT_TIB tib;
if(!ThreadGetTib(threadList.list[i].BasicInfo.ThreadLocalBase, &tib))
continue;
tib.StackLimit = nullptr;
// The stack will be a specific range only, not always the base address
stackAddrs.push_back((duint)tib.StackLimit);