safer this way, just in case..

This commit is contained in:
Ozkan Sezer 2018-09-25 09:20:56 +03:00
parent da89b81c3c
commit 870c44bfed
1 changed files with 6 additions and 6 deletions

View File

@ -376,13 +376,13 @@ HIDAPI_ShutdownDiscovery()
#endif #endif
#if defined(SDL_USE_LIBUDEV) #if defined(SDL_USE_LIBUDEV)
if (usyms) {
if (SDL_HIDAPI_discovery.m_pUdevMonitor) { if (SDL_HIDAPI_discovery.m_pUdevMonitor) {
usyms->udev_monitor_unref(SDL_HIDAPI_discovery.m_pUdevMonitor); usyms->udev_monitor_unref(SDL_HIDAPI_discovery.m_pUdevMonitor);
} }
if (SDL_HIDAPI_discovery.m_pUdev) { if (SDL_HIDAPI_discovery.m_pUdev) {
usyms->udev_unref(SDL_HIDAPI_discovery.m_pUdev); usyms->udev_unref(SDL_HIDAPI_discovery.m_pUdev);
} }
if (usyms) {
SDL_UDEV_ReleaseUdevSyms(); SDL_UDEV_ReleaseUdevSyms();
usyms = NULL; usyms = NULL;
} }