From 77353b43cbc8c402ffa8cefeede8a922d3e12598 Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Sat, 10 Jan 2009 19:08:54 +0000 Subject: Uninitialized variable introduced in 1.110. --- usr.sbin/authpf/authpf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 45f36acf733..8f8c42096f5 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.111 2009/01/10 17:17:32 todd Exp $ */ +/* $OpenBSD: authpf.c,v 1.112 2009/01/10 19:08:53 miod Exp $ */ /* * Copyright (C) 1998 - 2007 Bob Beck (beck@openbsd.org). @@ -483,7 +483,9 @@ allowed_luser(struct passwd *pw) */ int gl_init = 0, ngroups = NGROUPS + 1; gid_t groups[NGROUPS + 1]; + lbuf = NULL; + matched = 0; while ((buf = fgetln(f, &len))) { -- cgit v1.2.3