Commit 22011b33 by Brad Morgan

Cleanup

parent 89ea0e51
...@@ -375,12 +375,8 @@ static int _git_ssh_setup_conn( ...@@ -375,12 +375,8 @@ static int _git_ssh_setup_conn(
t->current_stream = s; t->current_stream = s;
git__free(host); git__free(host);
git__free(port); git__free(port);
if (user) { git__free(user);
git__free(user); git__free(pass);
}
if (pass) {
git__free(pass);
}
return 0; return 0;
...@@ -389,12 +385,10 @@ on_error: ...@@ -389,12 +385,10 @@ on_error:
ssh_stream_free(*stream); ssh_stream_free(*stream);
git__free(host); git__free(host);
if (port) git__free(port);
git__free(port); git__free(user);
if (user) git__free(pass);
git__free(user);
if (pass)
git__free(pass);
if (session) if (session)
libssh2_session_free(session), session = NULL; libssh2_session_free(session), session = NULL;
......
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