all repos — cgit @ 509488d85c06c66eb65bc4809f6e317c1ebe1d7a

a hyperfast web frontend for git written in c

ui-blob: remove useless null check

We have already called strlen() on "path" by the time we get here, so we
know it can't be null.

Coverity-id: 13954
Signed-off-by: John Keeping <john@keeping.me.uk>
John Keeping john@keeping.me.uk
Thu, 08 Oct 2015 23:23:58 +0100
commit

509488d85c06c66eb65bc4809f6e317c1ebe1d7a

parent

687cdf69689edcaff8e9035af93baf1a9e71cf32

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M ui-blob.cui-blob.c

@@ -85,7 +85,7 @@

if (get_sha1(head, sha1)) return -1; type = sha1_object_info(sha1, &size); - if (type == OBJ_COMMIT && path) { + if (type == OBJ_COMMIT) { commit = lookup_commit_reference(sha1); read_tree_recursive(commit->tree, "", 0, 0, &paths, walk_tree, &walk_tree_ctx); if (!walk_tree_ctx.found_path)