소스 검색

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;
 }