/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
9ffcf75
)
Merge branch 'nd/unpack-trees-with-cache-tree'
author
Junio C Hamano
<gitster@pobox.com>
Tue, 6 Nov 2018 06:50:20 +0000
(15:50 +0900)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 6 Nov 2018 06:50:20 +0000
(15:50 +0900)
Trivial bugfix.
* nd/unpack-trees-with-cache-tree:
read-cache: use of memory after it is freed
read-cache.c
patch
|
blob
|
blame
|
history
diff --git
a/read-cache.c
b/read-cache.c
index
d579582
..
f3a848d
100644
(file)
--- a/
read-cache.c
+++ b/
read-cache.c
@@
-2297,8
+2297,8
@@
int read_index_from(struct index_state *istate, const char *path,
freshen_shared_index(base_path, 0);
merge_base_index(istate);
post_read_index_from(istate);
- free(base_path);
trace_performance_leave("read cache %s", base_path);
+ free(base_path);
return ret;
}