aboutsummaryrefslogtreecommitdiff
path: root/lib/ssh.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-29 21:34:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-29 21:34:34 +0000
commitf58ba5ab1cb25b873f46a27a2b0422e3301100ba (patch)
tree06388e9f836fd5cd314020678d579d3267056ef2 /lib/ssh.c
parent2694b970e87c06462bf83e8d98ade7c90d7b52a3 (diff)
Immanuel Gregoire fixed a problem with persistent transfers over SFTP - the
previous proto struct was kept.
Diffstat (limited to 'lib/ssh.c')
-rw-r--r--lib/ssh.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index b7da3bff3..d56eb855c 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -1765,6 +1765,11 @@ CURLcode Curl_ssh_connect(struct connectdata *conn, bool *done)
CURLcode result;
struct SessionHandle *data = conn->data;
+ if (data->reqdata.proto.ssh) {
+ Curl_safefree(data->reqdata.proto.ssh);
+ data->reqdata.proto.ssh = NULL;
+ }
+
result = ssh_init(conn);
if (result)
return result;