mirror of https://github.com/procxx/kepka.git
Fix crash in absent file reading.
This commit is contained in:
parent
ed7a88ca17
commit
f91e11efc9
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue