mirror of git://anongit.mindrot.org/openssh.git
upstream: fix check for sig_s; noted by qsa at qualys.com
OpenBSD-Commit-ID: 34198084e4afb424a859f52c04bb2c9668a52867
This commit is contained in:
parent
fc173aeb15
commit
dffd02e297
4
ssh-sk.c
4
ssh-sk.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: ssh-sk.c,v 1.10 2019/11/12 22:38:19 djm Exp $ */
|
||||
/* $OpenBSD: ssh-sk.c,v 1.11 2019/11/13 20:25:45 markus Exp $ */
|
||||
/*
|
||||
* Copyright (c) 2019 Google LLC
|
||||
*
|
||||
|
@ -366,7 +366,7 @@ sshsk_ecdsa_sig(struct sk_sign_response *resp, struct sshbuf *sig)
|
|||
int r = SSH_ERR_INTERNAL_ERROR;
|
||||
|
||||
/* Check response validity */
|
||||
if (resp->sig_r == NULL || resp->sig_r == NULL) {
|
||||
if (resp->sig_r == NULL || resp->sig_s == NULL) {
|
||||
error("%s: sk_sign response invalid", __func__);
|
||||
r = SSH_ERR_INVALID_FORMAT;
|
||||
goto out;
|
||||
|
|
Loading…
Reference in New Issue