浏览代码

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

Andreas Kling 6 年之前
父节点
当前提交
7b3876383f
共有 1 个文件被更改,包括 1 次插入0 次删除
  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;
 }