[openssh-commits] [openssh] 01/04: upstream: missing initialisation for oerrno

git+noreply at mindrot.org git+noreply at mindrot.org
Sun Nov 28 18:28:15 AEDT 2021


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch master
in repository openssh.

commit 50bea24a9a9bdebad327c76e700def3261f5694e
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Sun Nov 28 07:10:18 2021 +0000

    upstream: missing initialisation for oerrno
    
    OpenBSD-Commit-ID: 05d646bba238080259bec821c831a6f0b48d2a95
---
 sshsig.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sshsig.c b/sshsig.c
index bd17d035..171e1317 100644
--- a/sshsig.c
+++ b/sshsig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshsig.c,v 1.24 2021/11/27 07:14:46 djm Exp $ */
+/* $OpenBSD: sshsig.c,v 1.25 2021/11/28 07:10:18 djm Exp $ */
 /*
  * Copyright (c) 2019 Google LLC
  *
@@ -1058,7 +1058,7 @@ sshsig_match_principals(const char *path, const char *principal,
 	char *found, *line = NULL, **principals = NULL, **tmp;
 	size_t i, nprincipals = 0, linesize = 0;
 	u_long linenum = 0;
-	int oerrno, r, ret = 0;
+	int oerrno = 0, r, ret = 0;
 
 	if (principalsp != NULL)
 		*principalsp = NULL;

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list