diff --git a/ChangeLog b/ChangeLog index 3eadbccd6..cd3732f71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -26,6 +26,7 @@ Bugfix * crypt_and_hash app checks MAC before final decryption * Potential memory leak in ssl_ticket_keys_init() * Memory leak in benchmark application + * Fixed x509_crt_parse_path() bug on Windows platforms = PolarSSL 1.3.2 released on 2013-11-04 Features diff --git a/library/x509_crt.c b/library/x509_crt.c index 63ab4030a..8632f7140 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c @@ -967,7 +967,7 @@ int x509_crt_parse_path( x509_crt *chain, const char *path ) p = filename + len; filename[len++] = '*'; - w_ret = MultiByteToWideChar( CP_ACP, 0, path, len, szDir, MAX_PATH - 3 ); + w_ret = MultiByteToWideChar( CP_ACP, 0, filename, len, szDir, MAX_PATH - 3 ); hFind = FindFirstFileW( szDir, &file_data ); if (hFind == INVALID_HANDLE_VALUE)