2
0
Fork 0

mod_openssl: fix memleak

personal/stbuehler/wip
Stefan Bühler 2009-10-11 22:58:48 +02:00
parent 9db95a5fa9
commit 0cb1a1fbfa
1 changed files with 4 additions and 0 deletions

View File

@ -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;