Commit f6bd0863 by Etienne Samson

Fix a probable leak.

parent 219f318c
...@@ -351,7 +351,7 @@ static int _git_ssh_setup_conn( ...@@ -351,7 +351,7 @@ static int _git_ssh_setup_conn(
user, user,
GIT_CREDTYPE_USERPASS_PLAINTEXT | GIT_CREDTYPE_SSH_KEYFILE_PASSPHRASE, GIT_CREDTYPE_USERPASS_PLAINTEXT | GIT_CREDTYPE_SSH_KEYFILE_PASSPHRASE,
t->owner->cred_acquire_payload) < 0) t->owner->cred_acquire_payload) < 0)
return -1; goto on_error;
} else { } else {
goto on_error; goto on_error;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment