Skip Menu |

This queue is for tickets about the File-Find-Rule CPAN distribution.

Report information
The Basics
Id: 2138
Status: resolved
Priority: 0/
Queue: File-Find-Rule

People
Owner: RCLAMP [...] cpan.org
Requestors: grimoire [...] corinne.cpio.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.09
Fixed in: (no value)



Subject: Dumps to STDERR when trying to stat directories
The following line of code: my @bigfiles = find( size => ">$MIN_SIZE", in => $ROOTDIR ); Causes repeated instances of this warning to be dumped on STDERR. Use of uninitialized value in numeric gt (>) at (eval 28) line 1. This can of course be fixed with: my @bigfiles = find( file => size => ">$MIN_SIZE", in => $ROOTDIR ); But you asked me to report it so you could fix it when you got a tuit. (Perl 5.6.1 on RedHat Linux, 2.4.18 kernel)