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:
authorJunio C Hamano <gitster@pobox.com>2011-10-05 23:35:53 +0400
committerJunio C Hamano <gitster@pobox.com>2011-10-05 23:35:53 +0400
commit00723b02912cc9dae1ee5601ab4b942fdd42ff52 (patch)
tree194851817aa4c293a628add066b59aeab0072ce6 /builtin
parent1b840a56629c8c0620c261672cc5d4d35ba253fa (diff)
parent8cb5775b2b9885708c3f646a1e273de1ac778a88 (diff)
Merge branch 'nm/grep-object-sha1-lock'
* nm/grep-object-sha1-lock: grep: Fix race condition in delta_base_cache Conflicts: builtin/grep.c
Diffstat (limited to 'builtin')
-rw-r--r--builtin/grep.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/grep.c b/builtin/grep.c
index 1c359c2671..a286692e46 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -598,8 +598,11 @@ static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
struct strbuf base;
int hit, len;
+ read_sha1_lock();
data = read_object_with_reference(obj->sha1, tree_type,
&size, NULL);
+ read_sha1_unlock();
+
if (!data)
die(_("unable to read tree (%s)"), sha1_to_hex(obj->sha1));