Initialize two variables for clang.
This commit is contained in:
parent
50ef070586
commit
123b56dc76
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: parser.c,v 1.82 2012/03/28 20:11:25 christos Exp $ */
|
||||
/* $NetBSD: parser.c,v 1.83 2012/06/17 20:48:27 wiz Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1991, 1993
|
||||
|
@ -37,7 +37,7 @@
|
|||
#if 0
|
||||
static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
|
||||
#else
|
||||
__RCSID("$NetBSD: parser.c,v 1.82 2012/03/28 20:11:25 christos Exp $");
|
||||
__RCSID("$NetBSD: parser.c,v 1.83 2012/06/17 20:48:27 wiz Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
|
@ -1362,9 +1362,9 @@ parsebackq: {
|
|||
struct nodelist **nlpp;
|
||||
int savepbq;
|
||||
union node *n;
|
||||
char *volatile str;
|
||||
char *volatile str = NULL;
|
||||
struct jmploc jmploc;
|
||||
struct jmploc *volatile savehandler;
|
||||
struct jmploc *volatile savehandler = NULL;
|
||||
int savelen;
|
||||
int saveprompt;
|
||||
|
||||
|
|
Loading…
Reference in New Issue