2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

fhem.pl: fix InternalTimer bug (Forum #40433)

git-svn-id: https://svn.fhem.de/fhem/trunk@9141 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-08-27 19:04:33 +00:00
parent 9dd45f5383
commit 33048082c9

View File

@ -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)) {