1
0
Fork 0

Fix undecorated name being uninitialized.

This commit is contained in:
ZehMatt 2018-02-11 13:53:57 +01:00 committed by Duncan Ogilvie
parent d5ae04dce4
commit 0cbf519e66
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 4 additions and 0 deletions

View File

@ -979,6 +979,10 @@ bool PDBDiaFile::convertSymbolInfo(IDiaSymbol* symbol, DiaSymbol_t & symbolInfo,
}*/
}
}
else
{
symbolInfo.undecoratedName = "";
}
hr = symbol->get_addressSection((DWORD*)&symbolInfo.segment);
if(hr != S_OK)