diff options
| -rw-r--r-- | CHANGES | 15 | ||||
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | Makefile-libbz2_so | 10 | ||||
| -rw-r--r-- | README | 3 | ||||
| -rw-r--r-- | README.COMPILATION.PROBLEMS | 2 | ||||
| -rw-r--r-- | README.XML.STUFF | 2 | ||||
| -rw-r--r-- | blocksort.c | 2 | ||||
| -rw-r--r-- | bzip2.1 | 4 | ||||
| -rw-r--r-- | bzip2.1.preformatted | 4 | ||||
| -rw-r--r-- | bzip2.c | 2 | ||||
| -rw-r--r-- | bzip2.txt | 4 | ||||
| -rw-r--r-- | bzip2recover.c | 4 | ||||
| -rw-r--r-- | bzlib.c | 2 | ||||
| -rw-r--r-- | bzlib.h | 2 | ||||
| -rw-r--r-- | bzlib_private.h | 4 | ||||
| -rw-r--r-- | compress.c | 2 | ||||
| -rw-r--r-- | crctable.c | 2 | ||||
| -rw-r--r-- | decompress.c | 2 | ||||
| -rw-r--r-- | entities.xml | 4 | ||||
| -rwxr-xr-x | format.pl | 2 | ||||
| -rw-r--r-- | huffman.c | 2 | ||||
| -rw-r--r-- | mk251.c | 2 | ||||
| -rw-r--r-- | randtable.c | 2 | ||||
| -rw-r--r-- | spewG.c | 2 | ||||
| -rw-r--r-- | unzcrash.c | 2 | ||||
| -rwxr-xr-x | xmlproc.sh | 2 |
27 files changed, 51 insertions, 37 deletions
| @@ -2,7 +2,7 @@ | |||
| 2 | This file is part of bzip2/libbzip2, a program and library for | 2 | This file is part of bzip2/libbzip2, a program and library for |
| 3 | lossless, block-sorting data compression. | 3 | lossless, block-sorting data compression. |
| 4 | 4 | ||
| 5 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 5 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 7 | 7 | ||
| 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -325,3 +325,16 @@ Security fix only. Fixes CERT-FI 20469 as it applies to bzip2. | |||
| 325 | Izdebski. | 325 | Izdebski. |
| 326 | 326 | ||
| 327 | * Make the documentation build on Ubuntu 10.04 | 327 | * Make the documentation build on Ubuntu 10.04 |
| 328 | |||
| 329 | 1.0.7 (27 Jun 19) | ||
| 330 | ~~~~~~~~~~~~~~~~~ | ||
| 331 | |||
| 332 | * Fix undefined behavior in the macros SET_BH, CLEAR_BH, & ISSET_BH | ||
| 333 | |||
| 334 | * bzip2: Fix return value when combining --test,-t and -q. | ||
| 335 | |||
| 336 | * bzip2recover: Fix buffer overflow for large argv[0] | ||
| 337 | |||
| 338 | * bzip2recover: Fix use after free issue with outFile (CVE-2016-3189) | ||
| 339 | |||
| 340 | * Make sure nSelectors is not out of range (CVE-2019-12900) | ||
| @@ -37,6 +37,6 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | |||
| 37 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 37 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 38 | 38 | ||
| 39 | Julian Seward, jseward@acm.org | 39 | Julian Seward, jseward@acm.org |
| 40 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 40 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 41 | 41 | ||
| 42 | -------------------------------------------------------------------------- | 42 | -------------------------------------------------------------------------- |
| @@ -137,7 +137,7 @@ bzip2recover.o: bzip2recover.c | |||
| 137 | distclean: clean | 137 | distclean: clean |
| 138 | rm -f manual.ps manual.html manual.pdf | 138 | rm -f manual.ps manual.html manual.pdf |
| 139 | 139 | ||
| 140 | DISTNAME=bzip2-1.0.6 | 140 | DISTNAME=bzip2-1.0.7 |
| 141 | dist: check manual | 141 | dist: check manual |
| 142 | rm -f $(DISTNAME) | 142 | rm -f $(DISTNAME) |
| 143 | ln -s -f . $(DISTNAME) | 143 | ln -s -f . $(DISTNAME) |
diff --git a/Makefile-libbz2_so b/Makefile-libbz2_so index cff37c2..862eb7d 100644 --- a/Makefile-libbz2_so +++ b/Makefile-libbz2_so | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 1 | ||
| 2 | # This Makefile builds a shared version of the library, | 2 | # This Makefile builds a shared version of the library, |
| 3 | # libbz2.so.1.0.6, with soname libbz2.so.1.0, | 3 | # libbz2.so.1.0.7, with soname libbz2.so.1.0, |
| 4 | # at least on x86-Linux (RedHat 7.2), | 4 | # at least on x86-Linux (RedHat 7.2), |
| 5 | # with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). | 5 | # with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). |
| 6 | # Please see the README file for some important info | 6 | # Please see the README file for some important info |
| @@ -35,13 +35,13 @@ OBJS= blocksort.o \ | |||
| 35 | bzlib.o | 35 | bzlib.o |
| 36 | 36 | ||
| 37 | all: $(OBJS) | 37 | all: $(OBJS) |
| 38 | $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.6 $(OBJS) | 38 | $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.7 $(OBJS) |
| 39 | $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.6 | 39 | $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.7 |
| 40 | rm -f libbz2.so.1.0 | 40 | rm -f libbz2.so.1.0 |
| 41 | ln -s libbz2.so.1.0.6 libbz2.so.1.0 | 41 | ln -s libbz2.so.1.0.7 libbz2.so.1.0 |
| 42 | 42 | ||
| 43 | clean: | 43 | clean: |
| 44 | rm -f $(OBJS) bzip2.o libbz2.so.1.0.6 libbz2.so.1.0 bzip2-shared | 44 | rm -f $(OBJS) bzip2.o libbz2.so.1.0.7 libbz2.so.1.0 bzip2-shared |
| 45 | 45 | ||
| 46 | blocksort.o: blocksort.c | 46 | blocksort.o: blocksort.c |
| 47 | $(CC) $(CFLAGS) -c blocksort.c | 47 | $(CC) $(CFLAGS) -c blocksort.c |
| @@ -6,7 +6,7 @@ This version is fully compatible with the previous public releases. | |||
| 6 | This file is part of bzip2/libbzip2, a program and library for | 6 | This file is part of bzip2/libbzip2, a program and library for |
| 7 | lossless, block-sorting data compression. | 7 | lossless, block-sorting data compression. |
| 8 | 8 | ||
| 9 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 9 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 10 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 10 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 11 | 11 | ||
| 12 | Please read the WARNING, DISCLAIMER and PATENTS sections in this file. | 12 | Please read the WARNING, DISCLAIMER and PATENTS sections in this file. |
| @@ -192,3 +192,4 @@ Cambridge, UK. | |||
| 192 | 20 December 2006 (bzip2, version 1.0.4) | 192 | 20 December 2006 (bzip2, version 1.0.4) |
| 193 | 10 December 2007 (bzip2, version 1.0.5) | 193 | 10 December 2007 (bzip2, version 1.0.5) |
| 194 | 6 Sept 2010 (bzip2, version 1.0.6) | 194 | 6 Sept 2010 (bzip2, version 1.0.6) |
| 195 | 27 June 2019 (bzip2, version 1.0.7) | ||
diff --git a/README.COMPILATION.PROBLEMS b/README.COMPILATION.PROBLEMS index d420854..9e6ac5a 100644 --- a/README.COMPILATION.PROBLEMS +++ b/README.COMPILATION.PROBLEMS | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | This file is part of bzip2/libbzip2, a program and library for | 2 | This file is part of bzip2/libbzip2, a program and library for |
| 3 | lossless, block-sorting data compression. | 3 | lossless, block-sorting data compression. |
| 4 | 4 | ||
| 5 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 5 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 7 | 7 | ||
| 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
diff --git a/README.XML.STUFF b/README.XML.STUFF index f5dc3a4..b0575c3 100644 --- a/README.XML.STUFF +++ b/README.XML.STUFF | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | This file is part of bzip2/libbzip2, a program and library for | 2 | This file is part of bzip2/libbzip2, a program and library for |
| 3 | lossless, block-sorting data compression. | 3 | lossless, block-sorting data compression. |
| 4 | 4 | ||
| 5 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 5 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 6 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 7 | 7 | ||
| 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
diff --git a/blocksort.c b/blocksort.c index aa36766..2657901 100644 --- a/blocksort.c +++ b/blocksort.c | |||
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -1,7 +1,7 @@ | |||
| 1 | .PU | 1 | .PU |
| 2 | .TH bzip2 1 | 2 | .TH bzip2 1 |
| 3 | .SH NAME | 3 | .SH NAME |
| 4 | bzip2, bunzip2 \- a block-sorting file compressor, v1.0.6 | 4 | bzip2, bunzip2 \- a block-sorting file compressor, v1.0.7 |
| 5 | .br | 5 | .br |
| 6 | bzcat \- decompresses files to stdout | 6 | bzcat \- decompresses files to stdout |
| 7 | .br | 7 | .br |
| @@ -405,7 +405,7 @@ I/O error messages are not as helpful as they could be. | |||
| 405 | tries hard to detect I/O errors and exit cleanly, but the details of | 405 | tries hard to detect I/O errors and exit cleanly, but the details of |
| 406 | what the problem is sometimes seem rather misleading. | 406 | what the problem is sometimes seem rather misleading. |
| 407 | 407 | ||
| 408 | This manual page pertains to version 1.0.6 of | 408 | This manual page pertains to version 1.0.7 of |
| 409 | .I bzip2. | 409 | .I bzip2. |
| 410 | Compressed data created by this version is entirely forwards and | 410 | Compressed data created by this version is entirely forwards and |
| 411 | backwards compatible with the previous public releases, versions | 411 | backwards compatible with the previous public releases, versions |
diff --git a/bzip2.1.preformatted b/bzip2.1.preformatted index 5f8e38e..a2279ad 100644 --- a/bzip2.1.preformatted +++ b/bzip2.1.preformatted | |||
| @@ -3,7 +3,7 @@ bzip2(1) bzip2(1) | |||
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | NNAAMMEE | 5 | NNAAMMEE |
| 6 | bzip2, bunzip2 − a block‐sorting file compressor, v1.0.6 | 6 | bzip2, bunzip2 − a block‐sorting file compressor, v1.0.7 |
| 7 | bzcat − decompresses files to stdout | 7 | bzcat − decompresses files to stdout |
| 8 | bzip2recover − recovers data from damaged bzip2 files | 8 | bzip2recover − recovers data from damaged bzip2 files |
| 9 | 9 | ||
| @@ -348,7 +348,7 @@ CCAAVVEEAATTSS | |||
| 348 | but the details of what the problem is sometimes seem | 348 | but the details of what the problem is sometimes seem |
| 349 | rather misleading. | 349 | rather misleading. |
| 350 | 350 | ||
| 351 | This manual page pertains to version 1.0.6 of _b_z_i_p_2_. Com | 351 | This manual page pertains to version 1.0.7 of _b_z_i_p_2_. Com |
| 352 | pressed data created by this version is entirely forwards | 352 | pressed data created by this version is entirely forwards |
| 353 | and backwards compatible with the previous public | 353 | and backwards compatible with the previous public |
| 354 | releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, | 354 | releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, |
| @@ -7,7 +7,7 @@ | |||
| 7 | This file is part of bzip2/libbzip2, a program and library for | 7 | This file is part of bzip2/libbzip2, a program and library for |
| 8 | lossless, block-sorting data compression. | 8 | lossless, block-sorting data compression. |
| 9 | 9 | ||
| 10 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 10 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 11 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 11 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 12 | 12 | ||
| 13 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 13 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -1,6 +1,6 @@ | |||
| 1 | 1 | ||
| 2 | NAME | 2 | NAME |
| 3 | bzip2, bunzip2 - a block-sorting file compressor, v1.0.6 | 3 | bzip2, bunzip2 - a block-sorting file compressor, v1.0.7 |
| 4 | bzcat - decompresses files to stdout | 4 | bzcat - decompresses files to stdout |
| 5 | bzip2recover - recovers data from damaged bzip2 files | 5 | bzip2recover - recovers data from damaged bzip2 files |
| 6 | 6 | ||
| @@ -345,7 +345,7 @@ CAVEATS | |||
| 345 | but the details of what the problem is sometimes seem | 345 | but the details of what the problem is sometimes seem |
| 346 | rather misleading. | 346 | rather misleading. |
| 347 | 347 | ||
| 348 | This manual page pertains to version 1.0.6 of bzip2. Com- | 348 | This manual page pertains to version 1.0.7 of bzip2. Com- |
| 349 | pressed data created by this version is entirely forwards | 349 | pressed data created by this version is entirely forwards |
| 350 | and backwards compatible with the previous public | 350 | and backwards compatible with the previous public |
| 351 | releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, | 351 | releases, versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, |
diff --git a/bzip2recover.c b/bzip2recover.c index a955d60..c0b9eac 100644 --- a/bzip2recover.c +++ b/bzip2recover.c | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | This file is part of bzip2/libbzip2, a program and library for | 7 | This file is part of bzip2/libbzip2, a program and library for |
| 8 | lossless, block-sorting data compression. | 8 | lossless, block-sorting data compression. |
| 9 | 9 | ||
| 10 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 10 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 11 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 11 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 12 | 12 | ||
| 13 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 13 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -314,7 +314,7 @@ Int32 main ( Int32 argc, Char** argv ) | |||
| 314 | inFileName[0] = outFileName[0] = 0; | 314 | inFileName[0] = outFileName[0] = 0; |
| 315 | 315 | ||
| 316 | fprintf ( stderr, | 316 | fprintf ( stderr, |
| 317 | "bzip2recover 1.0.6: extracts blocks from damaged .bz2 files.\n" ); | 317 | "bzip2recover 1.0.7: extracts blocks from damaged .bz2 files.\n" ); |
| 318 | 318 | ||
| 319 | if (argc != 2) { | 319 | if (argc != 2) { |
| 320 | fprintf ( stderr, "%s: usage is `%s damaged_file_name'.\n", | 320 | fprintf ( stderr, "%s: usage is `%s damaged_file_name'.\n", |
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
diff --git a/bzlib_private.h b/bzlib_private.h index 06ee0b4..7975552 100644 --- a/bzlib_private.h +++ b/bzlib_private.h | |||
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | /*-- General stuff. --*/ | 37 | /*-- General stuff. --*/ |
| 38 | 38 | ||
| 39 | #define BZ_VERSION "1.0.6, 6-Sept-2010" | 39 | #define BZ_VERSION "1.0.7, 27-Jun-2019" |
| 40 | 40 | ||
| 41 | typedef char Char; | 41 | typedef char Char; |
| 42 | typedef unsigned char Bool; | 42 | typedef unsigned char Bool; |
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
diff --git a/decompress.c b/decompress.c index 7351134..20ce493 100644 --- a/decompress.c +++ b/decompress.c | |||
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
diff --git a/entities.xml b/entities.xml index 0ff303e..3016674 100644 --- a/entities.xml +++ b/entities.xml | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | <!ENTITY bz-email "jseward@acm.org"> | 3 | <!ENTITY bz-email "jseward@acm.org"> |
| 4 | <!ENTITY bz-lifespan "1996-2010"> | 4 | <!ENTITY bz-lifespan "1996-2010"> |
| 5 | 5 | ||
| 6 | <!ENTITY bz-version "1.0.6"> | 6 | <!ENTITY bz-version "1.0.7"> |
| 7 | <!ENTITY bz-date "6 September 2010"> | 7 | <!ENTITY bz-date "27 June 2019"> |
| 8 | 8 | ||
| 9 | <!ENTITY manual-title "bzip2 Manual"> | 9 | <!ENTITY manual-title "bzip2 Manual"> |
| @@ -4,7 +4,7 @@ | |||
| 4 | # This file is part of bzip2/libbzip2, a program and library for | 4 | # This file is part of bzip2/libbzip2, a program and library for |
| 5 | # lossless, block-sorting data compression. | 5 | # lossless, block-sorting data compression. |
| 6 | # | 6 | # |
| 7 | # bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 7 | # bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 8 | # Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 8 | # Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 9 | # | 9 | # |
| 10 | # Please read the WARNING, DISCLAIMER and PATENTS sections in the | 10 | # Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -9,7 +9,7 @@ | |||
| 9 | This file is part of bzip2/libbzip2, a program and library for | 9 | This file is part of bzip2/libbzip2, a program and library for |
| 10 | lossless, block-sorting data compression. | 10 | lossless, block-sorting data compression. |
| 11 | 11 | ||
| 12 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 12 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 13 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 13 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 14 | 14 | ||
| 15 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 15 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
diff --git a/randtable.c b/randtable.c index 35b29e1..726d62f 100644 --- a/randtable.c +++ b/randtable.c | |||
| @@ -8,7 +8,7 @@ | |||
| 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.6 of 6 September 2010 | 11 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 12 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.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 |
| @@ -13,7 +13,7 @@ | |||
| 13 | This file is part of bzip2/libbzip2, a program and library for | 13 | This file is part of bzip2/libbzip2, a program and library for |
| 14 | lossless, block-sorting data compression. | 14 | lossless, block-sorting data compression. |
| 15 | 15 | ||
| 16 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 16 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 17 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 17 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 18 | 18 | ||
| 19 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 19 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -17,7 +17,7 @@ | |||
| 17 | This file is part of bzip2/libbzip2, a program and library for | 17 | This file is part of bzip2/libbzip2, a program and library for |
| 18 | lossless, block-sorting data compression. | 18 | lossless, block-sorting data compression. |
| 19 | 19 | ||
| 20 | bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 20 | bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 21 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 21 | Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 22 | 22 | ||
| 23 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | 23 | Please read the WARNING, DISCLAIMER and PATENTS sections in the |
| @@ -5,7 +5,7 @@ | |||
| 5 | # This file is part of bzip2/libbzip2, a program and library for | 5 | # This file is part of bzip2/libbzip2, a program and library for |
| 6 | # lossless, block-sorting data compression. | 6 | # lossless, block-sorting data compression. |
| 7 | # | 7 | # |
| 8 | # bzip2/libbzip2 version 1.0.6 of 6 September 2010 | 8 | # bzip2/libbzip2 version 1.0.7 of 27 June 2019 |
| 9 | # Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> | 9 | # Copyright (C) 1996-2010 Julian Seward <jseward@acm.org> |
| 10 | # | 10 | # |
| 11 | # Please read the WARNING, DISCLAIMER and PATENTS sections in the | 11 | # Please read the WARNING, DISCLAIMER and PATENTS sections in the |
