summaryrefslogtreecommitdiff
path: root/archive-zip.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-06-06 19:19:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-06-06 19:19:04 (GMT)
commitd4f6b5f51ce2c974c7630b5491562a21821c8fe4 (patch)
tree59323da68719f244d7c3366bbf07ca7a80f24429 /archive-zip.c
parent36a22e4b6c5c8a16c9a0ea308017c0cad2d1d679 (diff)
parentbe706c6f4f99ec04c4104bda8820513276af8129 (diff)
downloadgit-d4f6b5f51ce2c974c7630b5491562a21821c8fe4.zip
git-d4f6b5f51ce2c974c7630b5491562a21821c8fe4.tar.gz
git-d4f6b5f51ce2c974c7630b5491562a21821c8fe4.tar.bz2
Merge branch 'sb/archive-zip-double-assignment-fix'
* sb/archive-zip-double-assignment-fix: archive-zip:write_zip_entry: Remove second reset of size variable to zero.
Diffstat (limited to 'archive-zip.c')
-rw-r--r--archive-zip.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/archive-zip.c b/archive-zip.c
index b2c4fe0..4bde019 100644
--- a/archive-zip.c
+++ b/archive-zip.c
@@ -232,7 +232,6 @@ static int write_zip_entry(struct archiver_args *args,
size = 0;
compressed_size = 0;
buffer = NULL;
- size = 0;
} else if (S_ISREG(mode) || S_ISLNK(mode)) {
enum object_type type = sha1_object_info(sha1, &size);