From 7b3876383fc26b9afecb424c080d1631c03efbdd Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 18 Apr 2019 02:09:15 +0200 Subject: [PATCH] LibCore: CIODevice::seek() should reset EOF state. --- LibCore/CIODevice.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/LibCore/CIODevice.cpp b/LibCore/CIODevice.cpp index a85efc6b73..8fc12f6c0f 100644 --- a/LibCore/CIODevice.cpp +++ b/LibCore/CIODevice.cpp @@ -182,5 +182,6 @@ bool CIODevice::seek(signed_qword offset) return false; } m_buffered_data.clear(); + m_eof = false; return true; }