mirror of
https://github.com/minetest/irrlicht.git
synced 2025-03-06 20:49:24 +01:00
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:
parent
9f9d22ca33
commit
6f3435f349
1 changed files with 1 additions and 1 deletions
|
@ -121,8 +121,8 @@ namespace irr
|
|||
if (dev)
|
||||
{
|
||||
dev->Unacquire();
|
||||
dev->Release();
|
||||
}
|
||||
dev->Release();
|
||||
}
|
||||
|
||||
if (DirectInputDevice)
|
||||
|
|
Loading…
Add table
Reference in a new issue