diff options
author | John Keeping <john@keeping.me.uk> | 2015-10-08 23:23:59 +0100 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-10-09 10:54:48 +0200 |
commit | 198a4404b937033cf2cf2b054242df4e81ef3075 (patch) | |
tree | ec3ffd49f759af1d01c331e36456056f39032acc | |
parent | 509488d85c06c66eb65bc4809f6e317c1ebe1d7a (diff) | |
download | cgit-198a4404b937033cf2cf2b054242df4e81ef3075.tar.gz cgit-198a4404b937033cf2cf2b054242df4e81ef3075.tar.bz2 cgit-198a4404b937033cf2cf2b054242df4e81ef3075.zip |
ui-refs: remove useless null check
There is no way that "tag" can be null here.
Coverity-id: 13950
Signed-off-by: John Keeping <john@keeping.me.uk>
-rw-r--r-- | ui-refs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ static int print_tag(struct refinfo *ref) tag = (struct tag *)obj; obj = tag->tagged; info = ref->tag; - if (!tag || !info) + if (!info) return 1; } |