diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2018-12-16 03:40:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2018-12-16 03:40:41 +0000 |
commit | ec5cdc77201d412afe5bad1d396ea280476b55e7 (patch) | |
tree | 8c89710bb85cf4c0f5fdcacf91758e59b39b54b9 | |
parent | 87162d93c10065652254acda43a5c0b000739c9e (diff) |
Back out rev 1.17 for now, it causes issues with python when building
databases/tdb from ports.
-rw-r--r-- | lib/libc/stdio/fread.c | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/lib/libc/stdio/fread.c b/lib/libc/stdio/fread.c index ff132cf6523..58f32d26f30 100644 --- a/lib/libc/stdio/fread.c +++ b/lib/libc/stdio/fread.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fread.c,v 1.17 2018/12/14 20:55:17 millert Exp $ */ +/* $OpenBSD: fread.c,v 1.18 2018/12/16 03:40:40 millert Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -68,36 +68,6 @@ fread(void *buf, size_t size, size_t count, FILE *fp) fp->_r = 0; total = resid; p = buf; - - /* - * If we're unbuffered we know that the buffer in fp is empty so - * we can read directly into buf. This is much faster than a - * series of one byte reads into fp->_nbuf. - */ - if ((fp->_flags & __SNBF) != 0 && buf != NULL) { - /* set up the buffer */ - fp->_bf._base = fp->_p = buf; - fp->_bf._size = total; - - while (resid > 0) { - if (__srefill(fp)) { - /* no more input: return partial result */ - count = (total - resid) / size; - break; - } - fp->_p += fp->_r; - resid -= fp->_r; - } - - /* restore the old buffer (see __smakebuf) */ - fp->_bf._base = fp->_p = fp->_nbuf; - fp->_bf._size = 1; - fp->_r = 0; - - FUNLOCKFILE(fp); - return (count); - } - while (resid > (r = fp->_r)) { (void)memcpy(p, fp->_p, r); fp->_p += r; |