From 3cf353dcfffdd1a24ca253be8e04235b7c02e06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Tue, 22 Oct 2013 11:35:59 +0200 Subject: [PATCH] Feature #1678: One more missing unlock in InformationManager::timer_action --- src/im/InformationManager.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/im/InformationManager.cc b/src/im/InformationManager.cc index 1615f71226..80513a1bd6 100644 --- a/src/im/InformationManager.cc +++ b/src/im/InformationManager.cc @@ -292,5 +292,9 @@ void InformationManager::timer_action() host->unlock(); } + else + { + host->unlock(); + } } }