Browse Source

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

Andreas Kling 6 years ago
parent
commit
7b3876383f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      LibCore/CIODevice.cpp

+ 1 - 0
LibCore/CIODevice.cpp

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