YABugfix for EXCEPT_FD
git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4189 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
@@ -463,9 +463,9 @@ while (1) {
|
||||
foreach my $p (keys %selectlist) {
|
||||
my $hash = $selectlist{$p};
|
||||
vec($rin, $hash->{FD}, 1) = 1
|
||||
if($hash->{FD});
|
||||
if(defined($hash->{FD}));
|
||||
vec($win, $hash->{FD}, 1) = 1
|
||||
if($hash->{FD} && defined($hash->{$wbName}));
|
||||
if(defined($hash->{FD}) && defined($hash->{$wbName}));
|
||||
vec($ein, $hash->{EXCEPT_FD}, 1) = 1
|
||||
if(defined($hash->{"EXCEPT_FD"}));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user