Fix valgrind warning

This commit is contained in:
Benau 2019-06-30 09:41:32 +08:00
parent c710057db1
commit 0253384bf9

View File

@ -2701,7 +2701,7 @@ bool CIrrDeviceLinux::activateJoysticks(core::array<SJoystickInfo> & joystickInf
returnInfo.Buttons = info.buttons;
#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
char name[80];
char name[80] = {0};
ioctl( info.fd, JSIOCGNAME(80), name);
returnInfo.Name = name;
#endif