diff options
author | Pierre Humblet <phumblet@phumblet.no-ip.org> | 2004-06-17 13:34:26 +0000 |
---|---|---|
committer | Pierre Humblet <phumblet@phumblet.no-ip.org> | 2004-06-17 13:34:26 +0000 |
commit | bd0e9c7aa613edfdc3146014fb73c38df4748659 (patch) | |
tree | 31f22d9165d03ec109ea29e19480599e81b8abb5 /winsup/cygwin/miscfuncs.cc | |
parent | 9f35b464563d391929da0326ea37c15e6099cdce (diff) | |
download | cygnal-bd0e9c7aa613edfdc3146014fb73c38df4748659.tar.gz cygnal-bd0e9c7aa613edfdc3146014fb73c38df4748659.tar.bz2 cygnal-bd0e9c7aa613edfdc3146014fb73c38df4748659.zip |
2004-06-17 Pierre Humblet <pierre.humblet@ieee.org>
* fhandler.cc (fhandler_base::open_9x): Do not check for null name.
Move debug_printf to common code line.
(fhandler_base::open): Ditto. Initialize upath. Remove second argument
of pc.get_nt_native_path.
* path.h (path_conv::get_nt_native_path): Remove second argument.
* path.cc (path_conv::get_nt_native_path): Ditto. Call str2uni_cat.
* security.h (str2buf2uni_cat): Delete declaration.
(str2uni_cat): New declaration.
* security.cc (str2buf2uni): Get length from sys_mbstowcs call.
(str2buf2uni_cat): Delete function.
(str2uni_cat): New function.
* miscfuncs.cc (sys_mbstowcs): Add debug_printf.
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r-- | winsup/cygwin/miscfuncs.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc index d36a824af..dcbe7c1b8 100644 --- a/winsup/cygwin/miscfuncs.cc +++ b/winsup/cygwin/miscfuncs.cc @@ -312,7 +312,10 @@ sys_wcstombs (char *tgt, const WCHAR *src, int len) int __stdcall sys_mbstowcs (WCHAR *tgt, const char *src, int len) { - return MultiByteToWideChar (get_cp (), 0, src, -1, tgt, len); + int res = MultiByteToWideChar (get_cp (), 0, src, -1, tgt, len); + if (!res) + debug_printf ("MultiByteToWideChar %E"); + return res; } extern "C" int |