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

YABugfix for EXCEPT_FD

git-svn-id: https://svn.fhem.de/fhem/trunk@4189 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-11-09 13:46:31 +00:00
parent e2737c0e80
commit 5026fca578

View File

@ -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"}));
}