summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorShawn Pearce <spearce@spearce.org>2006-08-26 08:11:02 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-08-27 00:35:17 (GMT)
commit7c3e8be30718f9866f330044fe2a0a7c5b2c3461 (patch)
tree74ddf74de573255c4f1dadfb750c841fe6c22b98 /sha1_file.c
parentde530aaa4b57b1edd9b973d814d7df8354752ccc (diff)
downloadgit-7c3e8be30718f9866f330044fe2a0a7c5b2c3461.zip
git-7c3e8be30718f9866f330044fe2a0a7c5b2c3461.tar.gz
git-7c3e8be30718f9866f330044fe2a0a7c5b2c3461.tar.bz2
Reuse compression code in unpack_compressed_entry.
[PATCH 2/5] Reuse compression code in unpack_compressed_entry. This cleans up the code by reusing a perfectly good decompression implementation at the expense of 1 extra byte of memory allocated in temporary memory while the delta is being decompressed and applied to the base. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c25
1 files changed, 4 insertions, 21 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 53beb91..3d7358f 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1092,10 +1092,8 @@ static void *unpack_delta_entry(unsigned char *base_sha1,
struct packed_git *p)
{
struct pack_entry base_ent;
- void *data, *delta_data, *result, *base;
- unsigned long data_size, result_size, base_size;
- z_stream stream;
- int st;
+ void *delta_data, *result, *base;
+ unsigned long result_size, base_size;
if (left < 20)
die("truncated pack file");
@@ -1109,23 +1107,8 @@ static void *unpack_delta_entry(unsigned char *base_sha1,
die("failed to read delta-pack base object %s",
sha1_to_hex(base_sha1));
- data = base_sha1 + 20;
- data_size = left - 20;
- delta_data = xmalloc(delta_size);
-
- memset(&stream, 0, sizeof(stream));
-
- stream.next_in = data;
- stream.avail_in = data_size;
- stream.next_out = delta_data;
- stream.avail_out = delta_size;
-
- inflateInit(&stream);
- st = inflate(&stream, Z_FINISH);
- inflateEnd(&stream);
- if ((st != Z_STREAM_END) || stream.total_out != delta_size)
- die("delta data unpack failed");
-
+ delta_data = unpack_compressed_entry(base_sha1 + 20,
+ delta_size, left - 20);
result = patch_delta(base, base_size,
delta_data, delta_size,
&result_size);