mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 16:38:42 +00:00
Check for NULL commit buffer in cgit_parse_commit()
This can be NULL, so try not to segfault. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
a922615dae
commit
6130231ed5
@ -200,6 +200,9 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
|
|||||||
ret->subject = NULL;
|
ret->subject = NULL;
|
||||||
ret->msg = NULL;
|
ret->msg = NULL;
|
||||||
|
|
||||||
|
if (p == NULL)
|
||||||
|
return ret;
|
||||||
|
|
||||||
if (strncmp(p, "tree ", 5))
|
if (strncmp(p, "tree ", 5))
|
||||||
die("Bad commit: %s", sha1_to_hex(commit->object.sha1));
|
die("Bad commit: %s", sha1_to_hex(commit->object.sha1));
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user