1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

mGlobalsTargetType NULL check

This commit is contained in:
Brian Fiete 2022-04-16 13:22:47 -07:00
parent 229c7fbd12
commit e9c85529a6

View file

@ -286,7 +286,10 @@ COFF::~COFF()
}
const char* COFF::CvCheckTargetMatch(const char* name, bool& wasBeef)
{
{
if (mGlobalsTargetType == NULL)
return NULL;
/*if (mGlobalsTargetType->IsGlobalsContainer())
{
wasBeef = true;