From: Jeff King Date: Thu, 23 Oct 2008 04:30:58 +0000 (+0000) Subject: correct cache_entry allocation X-Git-Tag: v1.6.0.4~21 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=13494ed14c3539b3e36ff47d1d8b65f5a9a3043b;p=git.git correct cache_entry allocation Most cache_entry structs are allocated by using the cache_entry_size macro, which rounds the size of the struct up to the nearest multiple of 8 bytes (presumably to avoid memory fragmentation). There is one exception: the special "conflict entry" is allocated with an empty name, and so is explicitly given just one extra byte to hold the NUL. However, later code doesn't realize that this particular struct has been allocated differently, and happily tries reading and copying it based on the ce_size macro, which assumes the 8-byte alignment. This can lead to reading uninitalized data, though since that data is simply padding, there shouldn't be any problem as a result. Still, it makes sense to hold the padding assumption so as not to surprise later maintainers. This fixes valgrind errors in t1005, t3030, t4002, and t4114. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/unpack-trees.c b/unpack-trees.c index e59d144d2..e5749ef63 100644 --- a/unpack-trees.c +++ b/unpack-trees.c @@ -382,7 +382,7 @@ int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options o->merge_size = len; if (!dfc) - dfc = xcalloc(1, sizeof(struct cache_entry) + 1); + dfc = xcalloc(1, cache_entry_size(0)); o->df_conflict_entry = dfc; if (len) {