From c77c84886ab5efa13f915ca12ac9b1e0d02941c6 Mon Sep 17 00:00:00 2001 From: Stefan Persson Date: Fri, 13 Sep 2013 14:11:13 +0200 Subject: [PATCH] Ugly temporary fix for segfault in TelldusCenter --- telldus-core/common/EventHandler_unix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/telldus-core/common/EventHandler_unix.cpp b/telldus-core/common/EventHandler_unix.cpp index 46fc949a..15372b78 100644 --- a/telldus-core/common/EventHandler_unix.cpp +++ b/telldus-core/common/EventHandler_unix.cpp @@ -24,6 +24,7 @@ public: EventHandler::EventHandler() { d = new PrivateData; + printf(""); pthread_cond_init(&d->event, NULL); pthread_mutex_init(&d->mutex, NULL); }