Commit a5facc9b authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

winhttp: Use sk_ functions rather than accessing an OpenSSL stack type directly.

parent 24b43794
...@@ -124,6 +124,8 @@ MAKE_FUNCPTR( ERR_get_error ); ...@@ -124,6 +124,8 @@ MAKE_FUNCPTR( ERR_get_error );
MAKE_FUNCPTR( ERR_error_string ); MAKE_FUNCPTR( ERR_error_string );
MAKE_FUNCPTR( X509_STORE_CTX_get_ex_data ); MAKE_FUNCPTR( X509_STORE_CTX_get_ex_data );
MAKE_FUNCPTR( i2d_X509 ); MAKE_FUNCPTR( i2d_X509 );
MAKE_FUNCPTR( sk_value );
MAKE_FUNCPTR( sk_num );
#undef MAKE_FUNCPTR #undef MAKE_FUNCPTR
static CRITICAL_SECTION *ssl_locks; static CRITICAL_SECTION *ssl_locks;
...@@ -339,11 +341,11 @@ static int netconn_secure_verify( int preverify_ok, X509_STORE_CTX *ctx ) ...@@ -339,11 +341,11 @@ static int netconn_secure_verify( int preverify_ok, X509_STORE_CTX *ctx )
PCCERT_CONTEXT endCert = NULL; PCCERT_CONTEXT endCert = NULL;
ret = TRUE; ret = TRUE;
for (i = 0; ret && i < ctx->chain->num; i++) for (i = 0; ret && i < psk_num((struct stack_st *)ctx->chain); i++)
{ {
PCCERT_CONTEXT context; PCCERT_CONTEXT context;
cert = (X509 *)ctx->chain->data[i]; cert = (X509 *)psk_value((struct stack_st *)ctx->chain, i);
if ((context = X509_to_cert_context( cert ))) if ((context = X509_to_cert_context( cert )))
{ {
if (i == 0) if (i == 0)
...@@ -441,6 +443,8 @@ BOOL netconn_init( netconn_t *conn, BOOL secure ) ...@@ -441,6 +443,8 @@ BOOL netconn_init( netconn_t *conn, BOOL secure )
LOAD_FUNCPTR( ERR_error_string ); LOAD_FUNCPTR( ERR_error_string );
LOAD_FUNCPTR( X509_STORE_CTX_get_ex_data ); LOAD_FUNCPTR( X509_STORE_CTX_get_ex_data );
LOAD_FUNCPTR( i2d_X509 ); LOAD_FUNCPTR( i2d_X509 );
LOAD_FUNCPTR( sk_value );
LOAD_FUNCPTR( sk_num );
#undef LOAD_FUNCPTR #undef LOAD_FUNCPTR
pSSL_library_init(); pSSL_library_init();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment