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>
Tento commit je obsažen v:
rodič
509488d85c
revize
198a4404b9
@ -135,7 +135,7 @@ static int print_tag(struct refinfo *ref)
|
|||||||
tag = (struct tag *)obj;
|
tag = (struct tag *)obj;
|
||||||
obj = tag->tagged;
|
obj = tag->tagged;
|
||||||
info = ref->tag;
|
info = ref->tag;
|
||||||
if (!tag || !info)
|
if (!info)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Načítá se…
x
Odkázat v novém úkolu
Zablokovat Uživatele