* BugFix: Correct an error that causes the engine to crash when calling non-namespaced engine functions incorrectly.

This commit is contained in:
Robert MacGregor 2021-09-16 21:21:04 -04:00
parent 328319b853
commit f9b78597f7

View file

@ -734,7 +734,7 @@ ConsoleValue CodeBlock::exec(U32 ip, const char* functionName, Namespace* thisNa
SimObject* curObject = NULL;
SimObject* saveObject = NULL;
Namespace::Entry* nsEntry;
Namespace* ns;
Namespace* ns = NULL;
const char* curFNDocBlock = NULL;
const char* curNSDocBlock = NULL;
const S32 nsDocLength = 128;