2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

inform timer regexp fix

git-svn-id: https://svn.fhem.de/fhem/trunk@1718 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2012-07-11 14:45:23 +00:00
parent 5b651554ac
commit 7db2ee26d2

View File

@ -441,7 +441,9 @@ while (1) {
# reported by select, but is used by unix too, to check if the device is
# attached again.
foreach my $p (keys %selectlist) {
next if(!$selectlist{$p}); # due to rereadcfg / delete
next if(!$selectlist{$p});
next if(!$selectlist{$p} || !$selectlist{$p}{NAME}); # due to rereadcfg/del
CallFn($selectlist{$p}{NAME}, "ReadFn", $selectlist{$p})
if(vec($rout, $selectlist{$p}{FD}, 1));
}