appease gcc -Wuninitialized

This commit is contained in:
lukem 2005-06-01 15:41:19 +00:00
parent 50cde64b47
commit 5166671bc3
3 changed files with 9 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: expand.c,v 1.70 2005/03/19 16:38:27 dsl Exp $ */
/* $NetBSD: expand.c,v 1.71 2005/06/01 15:41:19 lukem Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)expand.c 8.5 (Berkeley) 5/15/95";
#else
__RCSID("$NetBSD: expand.c,v 1.70 2005/03/19 16:38:27 dsl Exp $");
__RCSID("$NetBSD: expand.c,v 1.71 2005/06/01 15:41:19 lukem Exp $");
#endif
#endif /* not lint */
@ -186,7 +186,7 @@ argstr(char *p, int flag)
char c;
int quotes = flag & (EXP_FULL | EXP_CASE); /* do CTLESC */
int firsteq = 1;
const char *ifs;
const char *ifs = NULL;
int ifs_split = EXP_IFS_SPLIT;
if (flag & EXP_IFS_SPLIT)

View File

@ -1,4 +1,4 @@
/* $NetBSD: jobs.c,v 1.62 2003/12/18 00:56:05 christos Exp $ */
/* $NetBSD: jobs.c,v 1.63 2005/06/01 15:41:19 lukem Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
#else
__RCSID("$NetBSD: jobs.c,v 1.62 2003/12/18 00:56:05 christos Exp $");
__RCSID("$NetBSD: jobs.c,v 1.63 2005/06/01 15:41:19 lukem Exp $");
#endif
#endif /* not lint */
@ -618,6 +618,7 @@ waitcmd(int argc, char **argv)
}
}
retval = 127; /* XXXGCC: -Wuninitialized */
for (; *argptr; argptr++) {
job = getjob(*argptr, 1);
if (!job) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: filter.c,v 1.24 2003/11/28 21:53:32 provos Exp $ */
/* $NetBSD: filter.c,v 1.25 2005/06/01 15:43:56 lukem Exp $ */
/* $OpenBSD: filter.c,v 1.16 2002/08/08 21:18:20 provos Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@ -30,7 +30,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: filter.c,v 1.24 2003/11/28 21:53:32 provos Exp $");
__RCSID("$NetBSD: filter.c,v 1.25 2005/06/01 15:43:56 lukem Exp $");
#include <sys/param.h>
#include <sys/types.h>
@ -78,7 +78,7 @@ static int
filter_match(struct intercept_pid *icpid, struct intercept_tlq *tls,
struct logic *logic)
{
struct intercept_translate *tl;
struct intercept_translate *tl = NULL;
int off = 0, res;
switch (logic->op) {