commit | 6130231ed5e7475836a44d79d5f09e300e71a407 | [log] [tgz] |
---|---|---|
author | Ondrej Jirman <ondrej.jirman@zonio.net> | Sat May 26 03:27:49 2007 +0200 |
committer | Lars Hjemli <hjemli@gmail.com> | Thu May 31 10:24:43 2007 +0200 |
tree | 9fc492315a0e9f23f1e8b0fba2420c2626a82152 | |
parent | a922615dae5d1f7b932dd1fc5a5f121748d96c5a [diff] [blame] |
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>
diff --git a/parsing.c b/parsing.c index b86467a..74a2484 100644 --- a/parsing.c +++ b/parsing.c
@@ -200,6 +200,9 @@ 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