[openssh-commits] [openssh] 12/12: upstream commit
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Mar 27 12:04:13 AEDT 2015
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit fecede00a76fbb33a349f5121c0b2f9fbc04a777
Author: markus at openbsd.org <markus at openbsd.org>
Date: Thu Mar 26 19:32:19 2015 +0000
upstream commit
sigp and lenp are not optional in ssh_agent_sign(); ok
djm@
---
authfd.c | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/authfd.c b/authfd.c
index 9ed5d2f..82915a4 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.96 2015/03/25 19:21:48 markus Exp $ */
+/* $OpenBSD: authfd.c,v 1.97 2015/03/26 19:32:19 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -438,10 +438,8 @@ ssh_agent_sign(int sock, struct sshkey *key,
u_int flags = 0;
int r = SSH_ERR_INTERNAL_ERROR;
- if (sigp != NULL)
- *sigp = NULL;
- if (lenp != NULL)
- *lenp = 0;
+ *sigp = NULL;
+ *lenp = 0;
if (datalen > SSH_KEY_MAX_SIGN_DATA_SIZE)
return SSH_ERR_INVALID_ARGUMENT;
@@ -469,8 +467,7 @@ ssh_agent_sign(int sock, struct sshkey *key,
}
if ((r = sshbuf_get_string(msg, sigp, &len)) != 0)
goto out;
- if (lenp != NULL)
- *lenp = len;
+ *lenp = len;
r = 0;
out:
if (blob != NULL) {
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list