X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=trees.c;h=f2ad3602f50763cbd34751eb0fa1b846e42f44c4;hb=b6def44c57e9b31b98b7766c8916531a4db9fd27;hp=1e1a2ca8af832d0a9e03f1d7b073a3c504b3a389;hpb=5382c729b658e85774b293c00fd600cae1d3937e;p=debian%2Fgzip diff --git a/trees.c b/trees.c index 1e1a2ca..f2ad360 100644 --- a/trees.c +++ b/trees.c @@ -856,10 +856,9 @@ local void send_all_trees(lcodes, dcodes, blcodes) * trees or store, and output the encoded block to the zip file. This function * returns the total compressed length for the file so far. */ -off_t flush_block(buf, stored_len, pad, eof) +off_t flush_block(buf, stored_len, eof) char *buf; /* input block, or NULL if too old */ ulg stored_len; /* length of input block */ - int pad; /* pad output to byte boundary */ int eof; /* true if this is the last block for a file */ { ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ @@ -952,10 +951,6 @@ off_t flush_block(buf, stored_len, pad, eof) Assert (input_len == bytes_in, "bad input size"); bi_windup(); compressed_len += 7; /* align on byte boundary */ - } else if (pad && (compressed_len % 8) != 0) { - send_bits((STORED_BLOCK<<1)+eof, 3); /* send block type */ - compressed_len = (compressed_len + 3 + 7) & ~7L; - copy_block(buf, 0, 1); /* with header */ } return compressed_len >> 3;