소스 검색

apparently fseek should not set the error flag on failed seek

Rich Felker 14 년 전
부모
커밋
9a909fcd91
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      src/stdio/fseek.c

+ 1 - 4
src/stdio/fseek.c

@@ -15,10 +15,7 @@ int __fseeko_unlocked(FILE *f, off_t off, int whence)
 	f->wpos = f->wbase = f->wend = 0;
 
 	/* Perform the underlying seek. */
-	if (f->seek(f, off, whence) < 0) {
-		f->flags |= F_ERR;
-		return -1;
-	}
+	if (f->seek(f, off, whence) < 0) return -1;
 
 	/* If seek succeeded, file is seekable and we discard read buffer. */
 	f->rpos = f->rend = 0;