svn commit: r201091 - head/lib/libarchive

Tim Kientzle kientzle at FreeBSD.org
Mon Dec 28 02:22:41 UTC 2009


Author: kientzle
Date: Mon Dec 28 02:22:41 2009
New Revision: 201091
URL: http://svn.freebsd.org/changeset/base/201091

Log:
  Remove dead assignment.

Modified:
  head/lib/libarchive/archive_write_set_compression_bzip2.c

Modified: head/lib/libarchive/archive_write_set_compression_bzip2.c
==============================================================================
--- head/lib/libarchive/archive_write_set_compression_bzip2.c	Mon Dec 28 02:22:04 2009	(r201090)
+++ head/lib/libarchive/archive_write_set_compression_bzip2.c	Mon Dec 28 02:22:41 2009	(r201091)
@@ -291,7 +291,6 @@ archive_compressor_bzip2_finish(struct a
 		block_length = state->stream.next_out - state->compressed;
 
 		/* Tricky calculation to determine size of last block. */
-		target_block_length = block_length;
 		if (a->bytes_in_last_block <= 0)
 			/* Default or Zero: pad to full block */
 			target_block_length = a->bytes_per_block;


More information about the svn-src-head mailing list