bss_file.c: reserve for option to encode file name with UTF-8.
diff --git a/crypto/bio/bss_file.c b/crypto/bio/bss_file.c index ba4f8e9..3f458a0 100644 --- a/crypto/bio/bss_file.c +++ b/crypto/bio/bss_file.c
@@ -121,7 +121,27 @@ BIO *ret; FILE *file; - if ((file=fopen(filename,mode)) == NULL) + file=fopen(filename,mode); +#if defined(_WIN32) && defined(CP_UTF8) + if (file==NULL && errno==ENOENT) /* see if filename is UTF-8 encoded */ + { + int sz,len_0 = (int)strlen(filename)+1; + if ((sz=MultiByteToWideChar(CP_UTF8,0,filename,len_0, + NULL,0))>0) + { + WCHAR wmode[8]; + WCHAR *wfilename = _alloca(sz*sizeof(WCHAR)); + + if (MultiByteToWideChar(CP_UTF8,0,filename,len_0, + wfilename,sz) && + MultiByteToWideChar(CP_UTF8,0,mode,strlen(mode)+1, + wmode,sizeof(wmode)/sizeof(wmode[0])) + ) + file = _wfopen(wfilename,wmode); + } + } +#endif + if (file == NULL) { SYSerr(SYS_F_FOPEN,get_last_sys_error()); ERR_add_error_data(5,"fopen('",filename,"','",mode,"')");