diff options
author | Junio C Hamano <junkio@cox.net> | 2006-09-03 21:09:18 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-03 21:09:18 -0700 |
commit | 72518e9c2623af0b5de864a7b66208ea94aacadb (patch) | |
tree | 42d0ed3b6202af7e9f60639101e36827bd200128 /sha1_file.c | |
parent | 7042dbf7a1e9137eb856b3b086a062561c50b8a3 (diff) | |
download | git-72518e9c2623af0b5de864a7b66208ea94aacadb.tar.gz git-72518e9c2623af0b5de864a7b66208ea94aacadb.tar.xz |
more lightweight revalidation while reusing deflated stream in packing
When copying from an existing pack and when copying from a loose
object with new style header, the code makes sure that the piece
we are going to copy out inflates well and inflate() consumes
the data in full while doing so.
The check to see if the xdelta really apply is quite expensive
as you described, because you would need to have the image of
the base object which can be represented as a delta against
something else.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 4ef98053f..428d791ba 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -711,7 +711,7 @@ int legacy_loose_object(unsigned char *map) return 0; } -static unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep) +unsigned long unpack_object_header_gently(const unsigned char *buf, unsigned long len, enum object_type *type, unsigned long *sizep) { unsigned shift; unsigned char c; |