1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-06 03:50:06 +02:00

Improve range checks

This commit is contained in:
Roderick van Domburg 2022-01-13 21:15:27 +01:00
parent e627cb4b35
commit 0cc4466245
No known key found for this signature in database
GPG key ID: A9EF5222A26F0451
2 changed files with 11 additions and 4 deletions

View file

@ -558,7 +558,7 @@ impl Read for AudioFileStreaming {
let available_length = download_status
.downloaded
.contained_length_from_value(offset);
assert!(available_length > 0);
drop(download_status);
self.position = self.read_file.seek(SeekFrom::Start(offset as u64))?;