mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- fixed missing checks for function calls from DECORATE
State functions could call ZScript code with incompatible self pointer, e.g. weapon's function could be called with self pointed to player pawn DECORATE scripts that contain such errors are no longer accepted https://forum.zdoom.org/viewtopic.php?t=66429
This commit is contained in:
parent
310459b490
commit
cf8c05c9c4
1 changed files with 2 additions and 1 deletions
|
@ -510,7 +510,8 @@ static FxExpression *ParseExpression0 (FScanner &sc, PClassActor *cls)
|
|||
sc.UnGet();
|
||||
ParseFunctionParameters(sc, cls, args, func, "", nullptr);
|
||||
}
|
||||
return new FxVMFunctionCall(new FxSelf(sc), func, args, sc, false);
|
||||
// FxVMFunctionCall cannot be used here as it lacks some important checks
|
||||
return new FxFunctionCall(identifier, NAME_None, args, sc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue