1
0
mirror of https://github.com/git/git.git synced 2024-11-18 22:23:55 +01:00

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.
This commit is contained in:
Junio C Hamano 2013-06-06 12:19:04 -07:00
commit d4f6b5f51c

@ -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);