[openssh-commits] [openssh] 08/22: upstream: fix uninitialized pointers for forward_cancel; ok djm
git+noreply at mindrot.org
git+noreply at mindrot.org
Fri Mar 13 13:18:45 AEDT 2020
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit a6134b02b5264b2611c8beae98bb392329452bba
Author: markus at openbsd.org <markus at openbsd.org>
Date: Fri Mar 6 18:19:21 2020 +0000
upstream: fix uninitialized pointers for forward_cancel; ok djm
OpenBSD-Commit-ID: 612778e6d87ee865d0ba97d0a335f141cee1aa37
---
channels.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/channels.c b/channels.c
index 19c22c4e..9683b336 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.396 2020/02/26 13:40:09 jsg Exp $ */
+/* $OpenBSD: channels.c,v 1.397 2020/03/06 18:19:21 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -4001,7 +4001,7 @@ channel_request_rforward_cancel_tcpip(struct ssh *ssh,
struct permission_set *pset = &sc->local_perms;
int r;
u_int i;
- struct permission *perm;
+ struct permission *perm = NULL;
for (i = 0; i < pset->num_permitted_user; i++) {
perm = &pset->permitted_user[i];
@@ -4037,7 +4037,7 @@ channel_request_rforward_cancel_streamlocal(struct ssh *ssh, const char *path)
struct permission_set *pset = &sc->local_perms;
int r;
u_int i;
- struct permission *perm;
+ struct permission *perm = NULL;
for (i = 0; i < pset->num_permitted_user; i++) {
perm = &pset->permitted_user[i];
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list