Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ssh/kex2-client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh/kex2-client.c b/ssh/kex2-client.c
index b890c023..26159bb5 100644
--- a/ssh/kex2-client.c
+++ b/ssh/kex2-client.c
@@ -559,10 +559,10 @@ void ssh2kex_coroutine(struct ssh2_transport_state *s, bool *aborted)
dh_cleanup(s->dh_ctx);
s->dh_ctx = NULL;
mp_free(s->f); s->f = NULL;
- }
- if (dh_is_gex(s->kex_alg)) {
- mp_free(s->g); s->g = NULL;
- mp_free(s->p); s->p = NULL;
+ if (dh_is_gex(s->kex_alg)) {
+ mp_free(s->g); s->g = NULL;
+ mp_free(s->p); s->p = NULL;
+ }
}
#endif
} else {