aboutsummaryrefslogtreecommitdiff
path: root/bzlib.c
diff options
context:
space:
mode:
authorJulian Seward <jseward@acm.org>2007-12-10 22:13:13 +0100
committerJulian Seward <jseward@acm.org>2007-12-10 22:13:13 +0100
commita1d78c550180bde11af6c559a01721c962f9f231 (patch)
treebfcd8115ca362023e9a5a5a1a542ea068497534f /bzlib.c
parentf10a33538e9bab6deb61779b3d8aae168824ef48 (diff)
downloadbzip2-a1d78c550180bde11af6c559a01721c962f9f231.tar.gz
bzip2-a1d78c550180bde11af6c559a01721c962f9f231.tar.bz2
bzip2-a1d78c550180bde11af6c559a01721c962f9f231.zip
bzip2-1.0.5bzip2-1.0.5
Diffstat (limited to 'bzlib.c')
-rw-r--r--bzlib.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/bzlib.c b/bzlib.c
index 79c34a5..ef86c91 100644
--- a/bzlib.c
+++ b/bzlib.c
@@ -8,8 +8,8 @@
8 This file is part of bzip2/libbzip2, a program and library for 8 This file is part of bzip2/libbzip2, a program and library for
9 lossless, block-sorting data compression. 9 lossless, block-sorting data compression.
10 10
11 bzip2/libbzip2 version 1.0.4 of 20 December 2006 11 bzip2/libbzip2 version 1.0.5 of 10 December 2007
12 Copyright (C) 1996-2006 Julian Seward <jseward@bzip.org> 12 Copyright (C) 1996-2007 Julian Seward <jseward@bzip.org>
13 13
14 Please read the WARNING, DISCLAIMER and PATENTS sections in the 14 Please read the WARNING, DISCLAIMER and PATENTS sections in the
15 README file. 15 README file.
@@ -48,7 +48,7 @@ void BZ2_bz__AssertH__fail ( int errcode )
48 "component, you should also report this bug to the author(s)\n" 48 "component, you should also report this bug to the author(s)\n"
49 "of that program. Please make an effort to report this bug;\n" 49 "of that program. Please make an effort to report this bug;\n"
50 "timely and accurate bug reports eventually lead to higher\n" 50 "timely and accurate bug reports eventually lead to higher\n"
51 "quality software. Thanks. Julian Seward, 15 February 2005.\n\n", 51 "quality software. Thanks. Julian Seward, 10 December 2007.\n\n",
52 errcode, 52 errcode,
53 BZ2_bzlibVersion() 53 BZ2_bzlibVersion()
54 ); 54 );
@@ -598,6 +598,7 @@ Bool unRLE_obuf_to_output_FAST ( DState* s )
598 UInt32 c_tPos = s->tPos; 598 UInt32 c_tPos = s->tPos;
599 char* cs_next_out = s->strm->next_out; 599 char* cs_next_out = s->strm->next_out;
600 unsigned int cs_avail_out = s->strm->avail_out; 600 unsigned int cs_avail_out = s->strm->avail_out;
601 Int32 ro_blockSize100k = s->blockSize100k;
601 /* end restore */ 602 /* end restore */
602 603
603 UInt32 avail_out_INIT = cs_avail_out; 604 UInt32 avail_out_INIT = cs_avail_out;