]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authordjm@openbsd.org <djm@openbsd.org>
Mon, 30 Jan 2017 00:32:03 +0000 (00:32 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 30 Jan 2017 01:04:10 +0000 (12:04 +1100)
don't dereference authctxt before testing != NULL, it
causes compilers to make assumptions; from Karsten Weiss

Upstream-ID: 794243aad1e976ebc717885b7a97a25e00c031b2

sshconnect2.c

index 103a2b36a7cf9a4f6a3f59dbdf5e849332d287de..badc000cea53135655c8c4ff4be8b5f260252829 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.251 2016/12/04 23:54:02 djm Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.252 2017/01/30 00:32:03 djm Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  * Copyright (c) 2008 Damien Miller.  All rights reserved.
@@ -934,14 +934,14 @@ input_userauth_passwd_changereq(int type, u_int32_t seqnr, void *ctxt)
        Authctxt *authctxt = ctxt;
        char *info, *lang, *password = NULL, *retype = NULL;
        char prompt[150];
-       const char *host = options.host_key_alias ? options.host_key_alias :
-           authctxt->host;
+       const char *host;
 
        debug2("input_userauth_passwd_changereq");
 
        if (authctxt == NULL)
                fatal("input_userauth_passwd_changereq: "
                    "no authentication context");
+       host = options.host_key_alias ? options.host_key_alias : authctxt->host;
 
        info = packet_get_string(NULL);
        lang = packet_get_string(NULL);