mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
AssertErrorState null check fix
This commit is contained in:
parent
06d896330d
commit
9517b3a9d5
1 changed files with 1 additions and 1 deletions
|
@ -15278,7 +15278,7 @@ void BfModule::AssertErrorState()
|
||||||
{
|
{
|
||||||
if (mCurTypeInstance->mTypeFailed)
|
if (mCurTypeInstance->mTypeFailed)
|
||||||
return;
|
return;
|
||||||
if (mCurTypeInstance->mTypeDef->mSource->mParsingFailed)
|
if ((mCurTypeInstance->mTypeDef->mSource != NULL) && (mCurTypeInstance->mTypeDef->mSource->mParsingFailed))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (mCurMethodInstance != NULL)
|
if (mCurMethodInstance != NULL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue