From 3c090a37d4f552008bbc287fcd635064e294f553 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Mon, 5 Dec 2016 00:36:09 +0000 Subject: [PATCH] evdev: fix shutdown hang Note: This probably means our approach of populating from udev isn't safe to be called multiple times. --- Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp index bee0c44a02..788ea963bc 100644 --- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp +++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp @@ -141,7 +141,6 @@ static void StopHotplugThread() void Init() { s_devnode_name_map.clear(); - PopulateDevices(); StartHotplugThread(); }