input/rewind, archive/iso9660: use use std::cmp_*() for safe integer comparison
This commit is contained in:
@@ -105,7 +105,7 @@ RewindInputStream::Seek(std::unique_lock<Mutex> &lock, offset_type new_offset)
|
||||
{
|
||||
assert(IsReady());
|
||||
|
||||
if (tail > 0 && new_offset <= (offset_type)tail) {
|
||||
if (tail > 0 && std::cmp_less_equal(new_offset, tail)) {
|
||||
/* buffered seek */
|
||||
|
||||
assert(!ReadingFromBuffer() ||
|
||||
|
||||
Reference in New Issue
Block a user