Skip to content
Snippets Groups Projects
Commit 071c4c60 authored by Fredrik Thulin's avatar Fredrik Thulin
Browse files

gck_rpc_close_tls: The BIO is free'd by SSL_free() already.

parent 546a0d80
No related branches found
No related tags found
No related merge requests found
...@@ -314,11 +314,6 @@ gck_rpc_close_tls(GckRpcTlsPskState *state) ...@@ -314,11 +314,6 @@ gck_rpc_close_tls(GckRpcTlsPskState *state)
SSL_free(state->ssl); SSL_free(state->ssl);
state->ssl = NULL; state->ssl = NULL;
} }
if (state->bio) {
BIO_free(state->bio);
state->bio = NULL;
}
} }
/* Send data using SSL. /* Send data using SSL.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment