mirror of
https://github.com/PixlOne/logiops.git
synced 2025-07-13 21:02:43 +08:00
Cleanup in InputDevice
This commit is contained in:
parent
1c209edaad
commit
c261b6582c
@ -54,8 +54,10 @@ InputDevice::InputDevice(const char* name)
|
||||
int err = libevdev_uinput_create_from_device(device,
|
||||
LIBEVDEV_UINPUT_OPEN_MANAGED, &ui_device);
|
||||
|
||||
if(err != 0)
|
||||
if(err != 0) {
|
||||
libevdev_free(device);
|
||||
throw std::system_error(-err, std::generic_category());
|
||||
}
|
||||
}
|
||||
|
||||
InputDevice::~InputDevice()
|
||||
|
@ -20,6 +20,7 @@
|
||||
#define LOGID_INPUTDEVICE_H
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
extern "C"
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user