mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Move receiver NULL check above the orresult check (#695)
This is to prevent a VM abort from happening here if orresult is false.
This commit is contained in:
parent
7666997580
commit
70a07e154c
1 changed files with 4 additions and 4 deletions
|
@ -393,14 +393,14 @@ extend class Actor
|
|||
{
|
||||
int paramnum = 0;
|
||||
|
||||
if (!orresult)
|
||||
{
|
||||
receiver = receiver.GetPointer(setreceiver);
|
||||
}
|
||||
if (receiver == NULL)
|
||||
{ // If there's nothing to receive it, it's obviously a fail, right?
|
||||
return false;
|
||||
}
|
||||
if (!orresult)
|
||||
{
|
||||
receiver = receiver.GetPointer(setreceiver);
|
||||
}
|
||||
// Owned inventory items cannot own anything because their Inventory pointer is repurposed for the owner's linked list.
|
||||
if (receiver is 'Inventory' && Inventory(receiver).Owner != null)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue