stoddard 99/10/18 14:59:30
Modified: src/lib/apr/file_io/win32 open.c Log: Fix bug in ap_get_os_file Revision Changes Path 1.7 +1 -1 apache-2.0/src/lib/apr/file_io/win32/open.c Index: open.c =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/file_io/win32/open.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- open.c 1999/10/14 14:36:31 1.6 +++ open.c 1999/10/18 21:59:29 1.7 @@ -173,7 +173,7 @@ if (file == NULL) { return APR_ENOFILE; } - thefile = &(file->filehand); + *thefile = file->filehand; return APR_SUCCESS; }