Merge pull request #581 from Ragora/bugfix-incorrect-function-call-crash-fix

* BugFix: Correct function call Error that causes the engine to crash
This commit is contained in:
Brian Roberts 2021-09-16 20:23:15 -05:00 committed by GitHub
commit 4176482373
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;