From ef7b3cd60bee388e00a29c00b5cda23162c2ee2e Mon Sep 17 00:00:00 2001 From: lukem Date: Sun, 12 Jun 2005 05:48:41 +0000 Subject: Appease gcc -Wuninitialized --- lib/libc/stdio/vfwscanf.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdio') diff --git a/lib/libc/stdio/vfwscanf.c b/lib/libc/stdio/vfwscanf.c index 867f8fbf998..4cbbaf4b6c2 100644 --- a/lib/libc/stdio/vfwscanf.c +++ b/lib/libc/stdio/vfwscanf.c @@ -1,4 +1,4 @@ -/* $NetBSD: vfwscanf.c,v 1.1 2005/05/14 23:51:02 christos Exp $ */ +/* $NetBSD: vfwscanf.c,v 1.2 2005/06/12 05:48:41 lukem Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -42,7 +42,7 @@ static char sccsid[] = "@(#)ftell.c 8.2 (Berkeley) 5/4/95"; __FBSDID("$FreeBSD: src/lib/libc/stdio/vfwscanf.c,v 1.12 2004/05/02 20:13:29 obrien Exp $"); #else -__RCSID("$NetBSD: vfwscanf.c,v 1.1 2005/05/14 23:51:02 christos Exp $"); +__RCSID("$NetBSD: vfwscanf.c,v 1.2 2005/06/12 05:48:41 lukem Exp $"); #endif #endif /* LIBC_SCCS and not lint */ @@ -158,6 +158,9 @@ __vfwscanf_unlocked(FILE * __restrict fp, const wchar_t * __restrict fmt, va_lis nconversions = 0; nread = 0; ccls = ccle = NULL; + base = 0; + cclcompl = 0; + mbp = NULL; for (;;) { c = *fmt++; if (c == 0) -- cgit