1
0
Fork 0

Fix resolving symbol size always returning true.

This commit is contained in:
ZehMatt 2017-12-19 11:59:52 +01:00 committed by Duncan Ogilvie
parent 80ad0e7df1
commit ae5bb70203
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -708,7 +708,7 @@ bool PDBDiaFile::processFunctionSymbol(IDiaSymbol* functionSym, InternalQueryCon
bool PDBDiaFile::resolveSymbolSize(IDiaSymbol* symbol, uint64_t & size, uint32_t symTag)
{
bool res = true;
bool res = false;
HRESULT hr;
uint64_t tempSize = -1;