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:
Ondrej Jirman 2007-05-26 03:27:49 +02:00 提交者 Lars Hjemli
父節點 a922615dae
當前提交 6130231ed5
共有 1 個檔案被更改,包括 3 行新增0 行删除

查看文件

@ -200,6 +200,9 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
ret->subject = NULL;
ret->msg = NULL;
if (p == NULL)
return ret;
if (strncmp(p, "tree ", 5))
die("Bad commit: %s", sha1_to_hex(commit->object.sha1));
else