about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Keeping <john@keeping.me.uk>2015-10-08 23:23:59 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2015-10-09 10:54:48 +0200
commit198a4404b937033cf2cf2b054242df4e81ef3075 (patch)
treeec3ffd49f759af1d01c331e36456056f39032acc
parentui-blob: remove useless null check (diff)
downloadcgit-magenta-198a4404b937033cf2cf2b054242df4e81ef3075.tar.xz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-refs.c b/ui-refs.c

index be3572c..295a4c7 100644 --- a/ui-refs.c +++ b/ui-refs.c
@@ -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; }