From a6868c07fcf0889bbc68c0e4a97a32ee17d99b42 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Thu, 27 Aug 2015 19:04:33 +0000 Subject: [PATCH] fhem.pl: fix InternalTimer bug (Forum #40433) git-svn-id: https://svn.fhem.de/fhem/trunk@9141 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 2bf73581b..e7cf9ef6f 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -2670,7 +2670,7 @@ HandleTimeout() # Check the internal list. foreach my $i (sort { $intAt{$a}{TRIGGERTIME} <=> $intAt{$b}{TRIGGERTIME} } keys %intAt) { - next if(!$i || !$intAt{$i}); # deleted in the loop + next if(!$intAt{$i}); # deleted in the loop my $tim = $intAt{$i}{TRIGGERTIME}; my $fn = $intAt{$i}{FN}; if(!defined($tim) || !defined($fn)) {