Prevent potential 0 pointer access when release not acquired joystick.

Found by clang analyser. Not sure if it could really ever have happened, but won't hurt to fix

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6443 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien 2022-11-19 16:41:11 +00:00
parent fc96c50e53
commit 817d59f379

View File

@ -117,8 +117,8 @@ namespace irr
if (dev)
{
dev->Unacquire();
dev->Release();
}
dev->Release();
}
if (DirectInputDevice)