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

Fixed uninitialized local variable

This commit is contained in:
Brian Fiete 2020-05-13 12:27:31 -07:00
parent d5a2db5a06
commit 25b8cdc808

View file

@ -3747,7 +3747,7 @@ void BfCompiler::ProcessAutocompleteTempType()
if (tempTypeDef->mTypeCode == BfTypeCode_Extension)
{
BfTypeInstance* outerTypeInstance;
BfTypeInstance* outerTypeInstance = NULL;
if (tempTypeDef->mOuterType != NULL)
{