fix perldoc to ignore unfound null filenames
Gurusamy Sarathy [Fri, 19 Jun 1998 21:18:47 +0000 (21:18 +0000)]
p4raw-id: //depot/perl@1156

utils/perldoc.PL

index ac71dd6..5b12696 100644 (file)
@@ -226,7 +226,7 @@ sub check_file {
        return minus_f_nocase($dir,$file);
     } else {
        my $path = minus_f_nocase($dir,$file);
-        return $path if containspod($path);
+        return $path if length $path and containspod($path);
     }
     return "";
 }