diff options
author | John Keeping | 2015-10-08 23:23:59 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2015-10-09 10:54:48 +0200 |
commit | 198a4404b937033cf2cf2b054242df4e81ef3075 (patch) | |
tree | ec3ffd49f759af1d01c331e36456056f39032acc /ui-refs.c | |
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>
Diffstat (limited to 'ui-refs.c')
-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) | |||
135 | tag = (struct tag *)obj; | 135 | tag = (struct tag *)obj; |
136 | obj = tag->tagged; | 136 | obj = tag->tagged; |
137 | info = ref->tag; | 137 | info = ref->tag; |
138 | if (!tag || !info) | 138 | if (!info) |
139 | return 1; | 139 | return 1; |
140 | } | 140 | } |
141 | 141 | ||