]> git.cameronkatri.com Git - cgit.git/commitdiff
ui-blob: don't segfault when no path is given
authorJohn Keeping <john@keeping.me.uk>
Sun, 7 Apr 2013 14:06:23 +0000 (15:06 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Sun, 7 Apr 2013 14:07:58 +0000 (16:07 +0200)
It it possible to inspect blobs by specifying only the SHA-1, and CGit
provides links to do so, for example if a tag points directly at a blob.
In this case the path_items structure is never used, but creating it
still causes strlen to be run on a null pointer.  Fix this.

This error was introduced by commit c1633c6 (Update git to v1.7.6.5 -
2013-03-02).

Signed-off-by: John Keeping <john@keeping.me.uk>
ui-blob.c

index c59fbcb2a70669ed9897ba61d81efeea082a8690..7aec0b17c8124eeff685aa4be1b3ea55884b5f17 100644 (file)
--- a/ui-blob.c
+++ b/ui-blob.c
@@ -80,7 +80,7 @@ void cgit_print_blob(const char *hex, char *path, const char *head)
        struct commit *commit;
        struct pathspec_item path_items = {
                .match = path,
        struct commit *commit;
        struct pathspec_item path_items = {
                .match = path,
-               .len = strlen(path)
+               .len = path ? strlen(path) : 0
        };
        struct pathspec paths = {
                .nr = 1,
        };
        struct pathspec paths = {
                .nr = 1,