From 0ed2a23ffeefebe72784abfafd8998d4b7501924 Mon Sep 17 00:00:00 2001 From: Torsten Paul Date: Sun, 2 Aug 2015 22:21:31 +0200 Subject: [PATCH] Initialize name even if the driver is not opened. --- src/input/DBusInputDriver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/DBusInputDriver.cc b/src/input/DBusInputDriver.cc index addcea10..1c54c297 100644 --- a/src/input/DBusInputDriver.cc +++ b/src/input/DBusInputDriver.cc @@ -36,7 +36,7 @@ void DBusInputDriver::run() DBusInputDriver::DBusInputDriver() : is_open(false) { - + name = "DBusInputDriver"; } DBusInputDriver::~DBusInputDriver()