fix memory leak

master
nixo 2021-02-04 02:37:09 +01:00
parent f2237369c6
commit 008b3da487
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ import Base.close
function close(client::SSLClient)
closed = do_ssl_shutdown(client)
close(client.sock)
free(client.context)
free(client)
end