From b8039a821b0f5b8c889c5ec0d9027d23581b336b Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Wed, 15 Nov 2006 05:35:35 +0000 Subject: Call libssh2_session_free() to release memory allocated during libssh2 startup. --- lib/ssh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ssh.c b/lib/ssh.c index 9b56ebc7b..dddd42d56 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -303,6 +303,7 @@ CURLcode Curl_scp_connect(struct connectdata *conn, bool *done) if (libssh2_session_startup(scp->scpSession, sock)) { failf(data, "Failure establishing ssh session\n"); + libssh2_session_free(scp->scpSession); Curl_safefree(scp->path); return CURLE_FAILED_INIT; } @@ -395,6 +396,7 @@ CURLcode Curl_scp_connect(struct connectdata *conn, bool *done) if (!authed) { failf(data, "Authentication failure\n"); + libssh2_session_free(scp->scpSession); Curl_safefree(scp->path); return CURLE_FAILED_INIT; } -- cgit v1.2.3