You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@hyperreal.org on 1999/12/19 09:03:29 UTC

cvs commit: apache-2.0/src/lib/apr/file_io/os2 open.c

bjh         99/12/19 00:03:29

  Modified:    src/lib/apr/file_io/os2 open.c
  Log:
  OS/2: Fix a couple of uninitialized fields in ap_put_os_file().
  
  Revision  Changes    Path
  1.11      +2 -0      apache-2.0/src/lib/apr/file_io/os2/open.c
  
  Index: open.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/os2/open.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- open.c	1999/10/20 15:11:20	1.10
  +++ open.c	1999/12/19 08:03:28	1.11
  @@ -197,6 +197,8 @@
       (*file)->filedes = *dafile;
       (*file)->isopen = TRUE;
       (*file)->buffered = FALSE;
  +    (*file)->validstatus = FALSE;
  +    (*file)->eof_hit = FALSE;
       return APR_SUCCESS;
   }