]> granicus.if.org Git - cgit/commitdiff
ui-blob: remove useless null check
authorJohn Keeping <john@keeping.me.uk>
Thu, 8 Oct 2015 22:23:58 +0000 (23:23 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Fri, 9 Oct 2015 08:54:38 +0000 (10:54 +0200)
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>
ui-blob.c

index b333f869f3c0cb15a737dcab3e6bc2a1872a1b4b..d3c3a102669fe9a56dba80d4c511f39ab8300189 100644 (file)
--- a/ui-blob.c
+++ b/ui-blob.c
@@ -85,7 +85,7 @@ int cgit_print_file(char *path, const char *head, int file_only)
        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)