mod_openssl: fix memleak
parent
9db95a5fa9
commit
0cb1a1fbfa
|
@ -90,6 +90,10 @@ static void openssl_con_close(liConnection *con) {
|
|||
conctx->ssl = FALSE;
|
||||
}
|
||||
|
||||
if (conctx->reuse_read_buffer) {
|
||||
g_byte_array_free(conctx->reuse_read_buffer, TRUE);
|
||||
}
|
||||
|
||||
con->srv_sock_data = NULL;
|
||||
con->is_ssl = FALSE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue