author | Linus Torvalds <torvalds@linux-foundation.org> | |
Sat, 23 Feb 2008 04:41:17 +0000 (20:41 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 23 Feb 2008 05:24:47 +0000 (21:24 -0800) | ||
commit | eb7a2f1d50ca8620b087dd2751d0fe2505e7974f | |
tree | 76405bdea23e14792a88b8e38229ca080af3d5d4 | tree | snapshot |
parent | d070e3a31bf94de1ef503b155a5e028545f7decc | commit | diff |
Use helper function for copying index entry information
We used to just memcpy() the index entry when we copied the stat() and
SHA1 hash information, which worked well enough back when the index
entry was just an exact bit-for-bit representation of the information on
disk.
However, these days we actually have various management information in
the cache entry too, and we should be careful to not overwrite it when
we copy the stat information from another index entry.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
We used to just memcpy() the index entry when we copied the stat() and
SHA1 hash information, which worked well enough back when the index
entry was just an exact bit-for-bit representation of the information on
disk.
However, these days we actually have various management information in
the cache entry too, and we should be careful to not overwrite it when
we copy the stat information from another index entry.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h | diff | blob | history | |
unpack-trees.c | diff | blob | history |