Skip to content
Snippets Groups Projects
Commit 396d621f authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-04-04 11:01:33 by simonmar]

Fix the EOF condition in readChunk.
parent dd3e3d70
No related merge requests found
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: readFile.c,v 1.13 2000/03/21 17:41:02 simonmar Exp $
* $Id: readFile.c,v 1.14 2000/04/04 11:01:33 simonmar Exp $
*
* hGetContents Runtime Support
*/
......@@ -191,7 +191,13 @@ readChunk(StgForeignPtr ptr, StgAddr buf, StgInt off, StgInt len)
/* EOF */
if ( count == 0 ) {
FILEOBJ_SET_EOF(fo);
return total_count;
if ( total_count == 0 ) {
ghc_errtype = ERR_EOF;
ghc_errstr = "";
return -1;
} else {
return total_count;
}
/* Blocking */
} else if ( count == -1 && errno == EAGAIN) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment