diff options
author | Andy Polyakov <appro@openssl.org> | 2010-12-11 14:53:14 +0000 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2010-12-11 14:53:14 +0000 |
commit | 05e4fbf80111999731eb7cec982879378e0e2f7d (patch) | |
tree | cae7c0a555df6ea30a9c6502fbdfccf97693ea51 | |
parent | ef3026a325e71ac728aebf085433a6ef34a99d3c (diff) | |
download | openssl-new-05e4fbf80111999731eb7cec982879378e0e2f7d.tar.gz |
bss_file.c: refine UTF8 logic.
PR: 2382
-rw-r--r-- | crypto/bio/bss_file.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c index 8bfa0bcd97..b954fe7ebc 100644 --- a/crypto/bio/bss_file.c +++ b/crypto/bio/bss_file.c @@ -123,6 +123,7 @@ BIO *BIO_new_file(const char *filename, const char *mode) #if defined(_WIN32) && defined(CP_UTF8) int sz, len_0 = (int)strlen(filename)+1; + DWORD flags; /* * Basically there are three cases to cover: a) filename is @@ -136,17 +137,22 @@ BIO *BIO_new_file(const char *filename, const char *mode) * ERROR_NO_UNICODE_TRANSLATION, in which case we fall * back to fopen... */ - if ((sz=MultiByteToWideChar(CP_UTF8,MB_ERR_INVALID_CHARS, + if ((sz=MultiByteToWideChar(CP_UTF8,(flags=MB_ERR_INVALID_CHARS), + filename,len_0,NULL,0))>0 || + (GetLastError()==ERROR_INVALID_FLAGS && + (sz=MultiByteToWideChar(CP_UTF8,(flags=0), filename,len_0,NULL,0))>0) + ) { WCHAR wmode[8]; WCHAR *wfilename = _alloca(sz*sizeof(WCHAR)); - if (MultiByteToWideChar(CP_UTF8,MB_ERR_INVALID_CHARS, + if (MultiByteToWideChar(CP_UTF8,flags, filename,len_0,wfilename,sz) && MultiByteToWideChar(CP_UTF8,0,mode,strlen(mode)+1, wmode,sizeof(wmode)/sizeof(wmode[0])) && - (file=_wfopen(wfilename,wmode))==NULL && errno==ENOENT + (file=_wfopen(wfilename,wmode))==NULL && + (errno==ENOENT || errno==EBADF) ) /* UTF-8 decode succeeded, but no file, filename * could still have been locale-ized... */ file = fopen(filename,mode); |