Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <41BDF3A0.6020909@redhat.com> Date: Mon, 13 Dec 2004 14:55:12 -0500 From: Jeff Johnston User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 MIME-Version: 1.0 To: Peter Astrand Cc: cygwin AT cygwin DOT com, newlib AT sources DOT redhat DOT com Subject: Re: short fread(), but no ferror/feof References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Peter Astrand wrote: > Dave Korn wrote: > > >> The fix and the problem Peter is seeing are orthogonal. >> >> The fix referred to above fixes this problem: >> >>http://sources.redhat.com/ml/newlib/2004/msg00478.html >>"Hence, one can see that fread() in unbuffered mode always returns the >>specified count instead of the number of elements actually read." >> >> That is why, as Peter has observed, fread() returns the number of >>elements >>actually read. Without the patch, it would have been returning the entire >>number requested, which would have been even wronger. > > > Ah, thanks for clarifying this. > > > >> However Peter's problem is that when fread() does a partial read, it doesn't >>set either the EOF mark or the error indication on the file stream. A strict >>reading of the fread() specification suggests that it should have set one of >>those. > > > IMO, there's no room for intepretation in this situation: As I stated > in my original post, IEEE Std 1003.1 is very clear: > > "fread() shall return the number of elements successfully read which is > less than nitems only if a read error or end-of-file is encountered." > Where in the POSIX standard did you find that above line? I could not locate it in mine. The line above is in SUSV3. ANSI and C99 are more relaxed and simply state that the number of elements returned may be less than asked if EOF or an error has occurred. Regardless, the behavior is wrong. The same test on a buffered file yields the EOF. I have posted a patch. -- Jeff J. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/