mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-23 18:23:25 +08:00
upstream commit
consistent check for NULL as noted by Nicholas Lemonias; ok djm@
This commit is contained in:
parent
df100be513
commit
7d4f96f9de
5
authfd.c
5
authfd.c
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: authfd.c,v 1.94 2015/01/14 20:05:27 djm Exp $ */
|
||||
/* $OpenBSD: authfd.c,v 1.95 2015/03/24 20:09:11 markus Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
@ -469,7 +469,8 @@ ssh_agent_sign(int sock, struct sshkey *key,
|
||||
}
|
||||
if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
|
||||
goto out;
|
||||
*lenp = len;
|
||||
if (*lenp != NULL)
|
||||
*lenp = len;
|
||||
r = 0;
|
||||
out:
|
||||
if (blob != NULL) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: ssh-keysign.c,v 1.47 2015/01/28 22:36:00 djm Exp $ */
|
||||
/* $OpenBSD: ssh-keysign.c,v 1.48 2015/03/24 20:09:11 markus Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2002 Markus Friedl. All rights reserved.
|
||||
*
|
||||
@ -157,7 +157,7 @@ valid_request(struct passwd *pw, char *host, struct sshkey **ret,
|
||||
|
||||
if (fail && key != NULL)
|
||||
sshkey_free(key);
|
||||
else
|
||||
else if (ret != NULL)
|
||||
*ret = key;
|
||||
|
||||
return (fail ? -1 : 0);
|
||||
|
Loading…
Reference in New Issue
Block a user