diff options
| author | Ondrej Jirman <ondrej.jirman@zonio.net> | 2007-05-26 03:27:49 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-31 10:24:43 +0200 | 
| commit | 6130231ed5e7475836a44d79d5f09e300e71a407 (patch) | |
| tree | 9fc492315a0e9f23f1e8b0fba2420c2626a82152 | |
| parent | a922615dae5d1f7b932dd1fc5a5f121748d96c5a (diff) | |
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>
| -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)  	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 | 
