This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Patch]: mount_info::conv_to_posix_path


A missing return causes trouble when chroot is in effect.

Pierre 

2004-05-07  Pierre Humblet <pierre.humblet@ieee.org>

	* path.cc (mount_info::conv_to_posix_path): Add return.

Index: path.cc
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/path.cc,v
retrieving revision 1.309
diff -u -p -r1.309 path.cc
--- path.cc     6 May 2004 16:26:10 -0000       1.309
+++ path.cc     6 May 2004 23:27:31 -0000
@@ -1703,6 +1703,7 @@ mount_info::conv_to_posix_path (const ch
          posix_path[0] = '/';
          posix_path[1] = '\0';
        }
+      return 0;
     }
   else
     return ENOENT;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]