Fix crash in absent file reading.

This commit is contained in:
John Preston 2019-06-05 14:27:33 +03:00
parent ed7a88ca17
commit f91e11efc9
1 changed files with 6 additions and 4 deletions

View File

@ -3193,10 +3193,12 @@ FileLocation readFileLocation(MediaKey location) {
location = aliasIt.value(); location = aliasIt.value();
} }
FileLocations::iterator i = _fileLocations.find(location); for (FileLocations::iterator i = _fileLocations.find(location); (i != _fileLocations.end()) && (i.key() == location);) {
if (i != _fileLocations.end()) { if (!i.value().inMediaCache() && !i.value().check()) {
if (i.value().inMediaCache()) { _fileLocationPairs.remove(i.value().fname);
int a = 0; i = _fileLocations.erase(i);
_writeLocations();
continue;
} }
return i.value(); return i.value();
} }