Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Fonseca <fonseca@diku.dk>2005-04-30 07:00:40 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-30 07:00:40 +0400
commite1a1388d858fa8522f187d3fdea92ff84e21528c (patch)
tree4020d4bd241ae6a890bc1b14d9376b13acbcb6ed /fsck-cache.c
parent87fec8fc9e790fedbee0c9fc810dbd1bf006d7b6 (diff)
[PATCH] git-fsck-cache: Gracefully handle non-commit IDs
Gracefully handle non-commit IDs instead of segfaulting. Signed-off-by: Jonas Fonseca <fonseca@diku.dk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fsck-cache.c')
-rw-r--r--fsck-cache.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/fsck-cache.c b/fsck-cache.c
index 280a104050..164fc2eaee 100644
--- a/fsck-cache.c
+++ b/fsck-cache.c
@@ -174,7 +174,14 @@ int main(int argc, char **argv)
continue;
if (!get_sha1_hex(arg, head_sha1)) {
- struct object *obj = &lookup_commit(head_sha1)->object;
+ struct commit *commit = lookup_commit(head_sha1);
+ struct object *obj;
+
+ /* Error is printed by lookup_commit(). */
+ if (!commit)
+ continue;
+
+ obj = &commit->object;
obj->used = 1;
mark_reachable(obj, REACHABLE);
heads++;