Fix undecorated name being uninitialized.
This commit is contained in:
parent
d5ae04dce4
commit
0cbf519e66
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue