Commit e44a9d2c authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

secur32/schannel: Avoid use-after-free in AcquireClientCredentials() (Coverity).

parent 70d119b7
......@@ -589,8 +589,9 @@ static SECURITY_STATUS schan_AcquireClientCredentials(const void *schanCred,
}
params.key_size = key_size;
params.key_blob = key_blob;
if (GNUTLS_CALL( allocate_certificate_credentials, &params )) goto fail;
status = GNUTLS_CALL( allocate_certificate_credentials, &params );
free(key_blob);
if (status) goto fail;
handle = schan_alloc_handle(creds, SCHAN_HANDLE_CRED);
if (handle == SCHAN_INVALID_HANDLE) goto fail;
......@@ -609,7 +610,6 @@ static SECURITY_STATUS schan_AcquireClientCredentials(const void *schanCred,
fail:
free(creds);
free(key_blob);
return SEC_E_INTERNAL_ERROR;
}
......
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