about summary refs log tree commit diff stats
path: root/parsing.c
diff options
context:
space:
mode:
authorOndrej Jirman2007-05-26 03:27:49 +0200
committerLars Hjemli2007-05-31 10:24:43 +0200
commit6130231ed5e7475836a44d79d5f09e300e71a407 (patch)
tree9fc492315a0e9f23f1e8b0fba2420c2626a82152 /parsing.c
parentAdd option to disable pager to cgit_print_log(). (diff)
downloadcgit-6130231ed5e7475836a44d79d5f09e300e71a407.tar.gz
cgit-6130231ed5e7475836a44d79d5f09e300e71a407.zip
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>
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c index b86467a..74a2484 100644 --- a/parsing.c +++ b/parsing.c
@@ -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