diff options
-rw-r--r-- | parsing.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -200,6 +200,9 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) | |||
200 | ret->subject = NULL; | 200 | ret->subject = NULL; |
201 | ret->msg = NULL; | 201 | ret->msg = NULL; |
202 | 202 | ||
203 | if (p == NULL) | ||
204 | return ret; | ||
205 | |||
203 | if (strncmp(p, "tree ", 5)) | 206 | if (strncmp(p, "tree ", 5)) |
204 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 207 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); |
205 | else | 208 | else |