1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 23:18:10 +00:00

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

View file

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