Fix wrong pointer dereferecing in aiFindAttackers

This commit is contained in:
Vasilii Rogin 2023-10-09 18:44:01 +03:00
parent 0e447c55a8
commit e978b2ad1b
1 changed files with 1 additions and 1 deletions

View File

@ -1464,7 +1464,7 @@ static int aiFindAttackers(Object* critter, Object** whoHitMePtr, Object** whoHi
*whoHitFriendPtr = NULL; *whoHitFriendPtr = NULL;
} }
if (*whoHitByFriendPtr != NULL) { if (whoHitByFriendPtr != NULL) {
*whoHitByFriendPtr = NULL; *whoHitByFriendPtr = NULL;
} }