diff options
author | Damien Miller <djm@mindrot.org> | 2014-04-20 05:00:11 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-04-20 05:00:11 +0200 |
commit | 8f9cd709c7cf0655d414306a0ed28306b33802be (patch) | |
tree | 8063cc3dc3435ebc4356a509603f51a3bd8acf12 /auth-bsdauth.c | |
parent | - djm@cvs.openbsd.org 2014/03/12 04:44:58 (diff) | |
download | openssh-8f9cd709c7cf0655d414306a0ed28306b33802be.tar.xz openssh-8f9cd709c7cf0655d414306a0ed28306b33802be.zip |
- djm@cvs.openbsd.org 2014/03/12 04:50:32
[auth-bsdauth.c ssh-keygen.c]
don't count on things that accept arguments by reference to clear
things for us on error; most things do, but it's unsafe form.
Diffstat (limited to 'auth-bsdauth.c')
-rw-r--r-- | auth-bsdauth.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/auth-bsdauth.c b/auth-bsdauth.c index 0b3262b49..f4209c22a 100644 --- a/auth-bsdauth.c +++ b/auth-bsdauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-bsdauth.c,v 1.11 2007/09/21 08:15:29 djm Exp $ */ +/* $OpenBSD: auth-bsdauth.c,v 1.12 2014/03/12 04:50:32 djm Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * @@ -54,6 +54,11 @@ bsdauth_query(void *ctx, char **name, char **infotxt, Authctxt *authctxt = ctx; char *challenge = NULL; + *infotxt = NULL; + *numprompts = 0; + *prompts = NULL; + *echo_on = NULL; + if (authctxt->as != NULL) { debug2("bsdauth_query: try reuse session"); challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE); |