- make SummaryInfo a struct instead of passing a list of values to the script classes.

This commit is contained in:
Christoph Oelckers 2021-04-26 02:00:40 +02:00
parent e05f900315
commit 021f1b7832
7 changed files with 62 additions and 35 deletions

View file

@ -8706,7 +8706,7 @@ FxExpression *FxVMFunctionCall::Resolve(FCompileContext& ctx)
bool writable;
ArgList[i] = ArgList[i]->Resolve(ctx); // must be resolved before the address is requested.
if (ArgList[i]->ValueType->isRealPointer())
if (ArgList[i] && ArgList[i]->ValueType->isRealPointer())
{
auto pointedType = ArgList[i]->ValueType->toPointer()->PointedType;
if (pointedType && pointedType->isDynArray())