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...@locus.apache.org on 2000/05/13 10:11:59 UTC

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

bjh         00/05/13 01:11:59

  Modified:    src/lib/apr/file_io/os2 open.c
  Log:
  OS/2: Fix return code on failure to create a file handle's mutex lock.
  
  Revision  Changes    Path
  1.26      +1 -1      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.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- open.c	2000/04/28 18:27:35	1.25
  +++ open.c	2000/05/13 08:11:58	1.26
  @@ -102,7 +102,7 @@
           rv = ap_create_lock(&dafile->mutex, APR_MUTEX, APR_INTRAPROCESS, NULL, cntxt);
   
           if (rv)
  -            return APR_OS2_STATUS(rv);
  +            return rv;
       }
   
       if (flag & APR_CREATE) {