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

fhem.pl: trying to fix the syswrite on closed FH problem

git-svn-id: https://svn.fhem.de/fhem/trunk@4286 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-11-25 08:50:12 +00:00
parent a698f7cf9c
commit 3823fde597

View File

@ -511,7 +511,7 @@ while (1) {
# attached again.
foreach my $p (keys %selectlist) {
my $hash = $selectlist{$p};
next if(!$hash || !$hash->{NAME}); # due to rereadcfg/del
next if(!$hash || !$hash->{NAME} || !$defs{$hash->{NAME}}); # due to delete
CallFn($hash->{NAME}, "ReadFn", $hash)
if(defined($hash->{FD}) && vec($rout, $hash->{FD}, 1));