Fix some possible-use-of-uninitialized warnings.

llvm-svn: 80515
This commit is contained in:
Daniel Dunbar 2009-08-30 21:13:58 +00:00
parent 89a9bb77e2
commit bf75ffd1e2
1 changed files with 2 additions and 2 deletions

View File

@ -1419,8 +1419,8 @@ static void
findmust(struct parse *p, struct re_guts *g)
{
sop *scan;
sop *start; /* start initialized in the default case, after that */
sop *newstart; /* newstart was initialized in the OCHAR case */
sop *start = 0; /* start initialized in the default case, after that */
sop *newstart = 0; /* newstart was initialized in the OCHAR case */
sopno newlen;
sop s;
char *cp;