Subject: | get_dir_filelist_sorted bug |
The get_dir_filelist_sorted routine in IPC/DirQueue.pm returns a real
array if the Queue directory is missing, when it should be returning a
reference. The fix is, on line 825, change:
return ();
To:
return [];
Regards,
Adam