From: Jay Satiro Date: Mon, 13 Jan 2020 23:25:12 +0000 (-0500) Subject: schannel_verify: Fix alt names manual verify for UNICODE builds X-Git-Tag: curl-7_69_0~203 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16da8bcd7141497b86b1098a9c874ac417ac6f82;p=thirdparty%2Fcurl.git schannel_verify: Fix alt names manual verify for UNICODE builds Follow-up to 29e40a6 from two days ago, which added that feature for Windows 7 and earlier. The bug only occurred in same. Ref: https://github.com/curl/curl/pull/4761 --- diff --git a/lib/vtls/schannel_verify.c b/lib/vtls/schannel_verify.c index 791bc0bb0b..e75132cadd 100644 --- a/lib/vtls/schannel_verify.c +++ b/lib/vtls/schannel_verify.c @@ -313,7 +313,7 @@ static DWORD cert_get_name_string(struct Curl_easy *data, CERT_ALT_NAME_INFO *alt_name_info = NULL; DWORD alt_name_info_size = 0; BOOL ret_val = FALSE; - char *current_pos = NULL; + LPTSTR current_pos = NULL; DWORD i; /* CERT_NAME_SEARCH_ALL_NAMES_FLAG is available from Windows 8 onwards. */