mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-28 02:44:53 +00:00
fhem.pl: avoid some "undefined" messages (Forum #39887)
git-svn-id: https://svn.fhem.de/fhem/trunk@9090 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
922f13886f
commit
86c5755d7f
@ -635,6 +635,7 @@ 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(!$p); # Deleted in the loop
|
||||
my $hash = $selectlist{$p};
|
||||
my $isDev = ($hash && $hash->{NAME} && $defs{$hash->{NAME}});
|
||||
my $isDirect = ($hash && ($hash->{directReadFn} || $hash->{directWriteFn}));
|
||||
@ -2661,6 +2662,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
|
||||
my $tim = $intAt{$i}{TRIGGERTIME};
|
||||
my $fn = $intAt{$i}{FN};
|
||||
if(!defined($tim) || !defined($fn)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user