Index: Slim/Formats/Parse.pm =================================================================== --- Slim/Formats/Parse.pm (revision 3704) +++ Slim/Formats/Parse.pm (working copy) @@ -147,6 +147,7 @@ $entry =~ s|$LF||g; $entry = Slim::Utils::Misc::fixPath($entry, $m3udir, $donttranslate); + next unless -e $entry; $::d_parse && Slim::Utils::Misc::msg(" entry: $entry\n"); @@ -302,6 +303,11 @@ return {}; } + if (! -e $filename) { + $::d_parse && Slim::Utils::Misc::msg("parseCUE file can't be read or doesn't exist: $filename\n"); + return {}; + } + # calc song ending times from start of next song from end to beginning. my $lastpos = $tracks->{$currtrack}->{'END'};