[gnutls-devel] GnuTLS | Re-introduce topendir on Windows with Unicode support (!932)

Development of GNU's TLS library gnutls-devel at lists.gnutls.org
Thu Feb 21 15:20:57 CET 2019


Hugo Beauzée-Luyssen commented on a discussion on lib/x509/verify-high2.c:

>  		while (d != NULL);
>  		closedir(dirp);
>  	}
> +#else /* _WIN32 */
>  
> +	_TDIR *dirp;
> +	struct _tdirent *d;
> +	gnutls_datum_t utf16 = {NULL, 0};
> +
> +	r = _gnutls_utf8_to_ucs2(dirname, strlen(dirname), &utf16);
> +	if (r < 0)
> +		return gnutls_assert_val(r);
> +	dirp = _topendir((_TCHAR*)utf16.data);
> +	gnutls_free(utf16.data);
> +	if (dirp != NULL) {
> +		do {

Pushed a version with the patches squashed in the revert

-- 
Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/merge_requests/932#note_143662605
You're receiving this email because of your account on gitlab.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnupg.org/pipermail/gnutls-devel/attachments/20190221/201c9e34/attachment-0001.html>


More information about the Gnutls-devel mailing list