mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
TypedValueToString fix with null type
This commit is contained in:
parent
53f4e8955e
commit
939c1079ee
1 changed files with 1 additions and 1 deletions
|
@ -3559,7 +3559,7 @@ String CeDebugger::TypedValueToString(const BfTypedValue& origTypedValue, const
|
|||
return "";
|
||||
|
||||
String reflectedTypeName;
|
||||
if (displayType->IsInstanceOf(mCompiler->mTypeTypeDef))
|
||||
if ((displayType->IsInstanceOf(mCompiler->mTypeTypeDef)) && (data != NULL))
|
||||
{
|
||||
auto typeInst = displayType->ToTypeInstance();
|
||||
auto typeIdField = typeInst->mTypeDef->GetFieldByName("mTypeId");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue