Silence "might be used uninitialized" warning.

This commit is contained in:
Wayne Davison 2001-08-08 07:41:01 +00:00
parent 7e23143359
commit 21dba96cd6

View file

@ -1129,7 +1129,7 @@ pattern_match(Cpattern p, char *s, unsigned char *in, unsigned char *out)
Cline
bld_parts(char *str, int len, int plen, Cline *lp)
{
Cline ret = NULL, *q = &ret, n;
Cline ret = NULL, *q = &ret, n = NULL;
Cmlist ms;
Cmatcher mp;
int t, op = plen;