LibCore: CIODevice::seek() should reset EOF state.

This commit is contained in:
Andreas Kling 2019-04-18 02:09:15 +02:00
parent f6b4013329
commit 7b3876383f
Notes: sideshowbarker 2024-07-19 14:40:24 +09:00

View file

@ -182,5 +182,6 @@ bool CIODevice::seek(signed_qword offset)
return false;
}
m_buffered_data.clear();
m_eof = false;
return true;
}