diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2001-08-08 07:41:01 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2001-08-08 07:41:01 +0000 |
commit | 21dba96cd6c555cdfa36894665ee7edd9afcf348 (patch) | |
tree | 262500fa700f7ba42ab1c4dec1ea4509521569f4 | |
parent | 7e231433596be391d1e5fa82fc9ebf72ee4cb7ea (diff) | |
download | zsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.tar.gz zsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.tar.xz zsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.zip |
Silence "might be used uninitialized" warning.
-rw-r--r-- | Src/Zle/compmatch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index 974f2ab3c..f4c720a87 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -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; |