diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2015-01-05 14:02:59 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2015-01-06 23:46:31 +0100 |
| commit | ea6bb993e980171454708dd89847553a30d17dd9 (patch) | |
| tree | 72511755ae4d9c3f1d391957bb0c072414be4637 /Src/Zle/compctl.c | |
| parent | 34115: compcore: Fix size argument to zfree (diff) | |
| download | zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar.gz zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar.bz2 zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar.lz zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar.xz zsh-ea6bb993e980171454708dd89847553a30d17dd9.tar.zst zsh-ea6bb993e980171454708dd89847553a30d17dd9.zip | |
34104: compctl: Remove pointless check
cc has already been derefed a bunch of times leading up to here. Found
by Coverity (Issue 1255841).
Diffstat (limited to 'Src/Zle/compctl.c')
| -rw-r--r-- | Src/Zle/compctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compctl.c b/Src/Zle/compctl.c index d15c2d1b0..96ad6a280 100644 --- a/Src/Zle/compctl.c +++ b/Src/Zle/compctl.c @@ -1515,7 +1515,7 @@ printcompctl(char *s, Compctl cc, int printflags, int ispat) if (cclist & COMP_LIST) printf(" --"); } - if (cc && cc->xor) { + if (cc->xor) { /* print xor'd (+) completions */ printf(" +"); if (cc->xor != &cc_default) |
