Fix for ID 20000915.011, IO::Select warning for an undefined fd.
authorJarkko Hietaniemi <jhi@iki.fi>
Sat, 21 Oct 2000 01:08:23 +0000 (01:08 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sat, 21 Oct 2000 01:08:23 +0000 (01:08 +0000)
p4raw-id: //depot/perl@7384

ext/IO/lib/IO/Select.pm

index e84b54f..1a3a26f 100644 (file)
@@ -56,6 +56,7 @@ sub exists
 sub _fileno
 {
  my($self, $f) = @_;
+ return unless defined $f;
  $f = $f->[0] if ref($f) eq 'ARRAY';
  ($f =~ /^\d+$/) ? $f : fileno($f);
 }