Remove two checks unneeded now (can't happens)

This commit is contained in:
ache 2001-09-01 14:48:45 +00:00
parent 0c69b04984
commit 20c6fc0914

View File

@ -236,14 +236,10 @@ _fseeko(fp, offset, whence, ltest)
goto abspos;
curoff += fp->_r; /* kill off ungetc */
n = fp->_extra->_up - fp->_bf._base;
if (curoff < 0 && -((off_t)n) < OFF_MIN - curoff)
goto abspos;
curoff -= n;
n += fp->_ur;
} else {
n = fp->_p - fp->_bf._base;
if (curoff < 0 && -((off_t)n) < OFF_MIN - curoff)
goto abspos;
curoff -= n;
n += fp->_r;
}