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

[project @ 1999-12-08 14:04:32 by simonmar]

oops, forgot to initialize bufStart in openStdFile.
parent 57df281f
No related merge requests found
/*
* (c) The GRASP/AQUA Project, Glasgow University, 1994-1998
*
* $Id: openFile.c,v 1.12 1999/11/26 16:25:56 simonmar Exp $
* $Id: openFile.c,v 1.13 1999/12/08 14:04:32 simonmar Exp $
*
* openFile Runtime Support
*/
......@@ -46,6 +46,7 @@ StgInt rd;
fo->buf = NULL;
fo->bufWPtr = 0;
fo->bufRPtr = 0;
fo->bufStart = 0;
fo->flags = FILEOBJ_STD | ( rd ? FILEOBJ_READ : FILEOBJ_WRITE);
fo->connectedTo = NULL;
......
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