diff options
author | Julian Seward <jseward@acm.org> | 2006-12-20 22:13:13 +0100 |
---|---|---|
committer | Julian Seward <jseward@acm.org> | 2006-12-20 22:13:13 +0100 |
commit | f10a33538e9bab6deb61779b3d8aae168824ef48 (patch) | |
tree | ecd1c2ed553ced58a090e0d8b7b7a20bb7c95c80 /CHANGES | |
parent | 4d540bfc95a4b0eefc1d1f388ec33534aaeb3a2f (diff) | |
download | bzip2-f10a33538e9bab6deb61779b3d8aae168824ef48.tar.gz bzip2-f10a33538e9bab6deb61779b3d8aae168824ef48.tar.bz2 bzip2-f10a33538e9bab6deb61779b3d8aae168824ef48.zip |
bzip2-1.0.4bzip2-1.0.4
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 41 |
1 files changed, 40 insertions, 1 deletions
@@ -1,3 +1,16 @@ | |||
1 | ------------------------------------------------------------------ | ||
2 | This file is part of bzip2/libbzip2, a program and library for | ||
3 | lossless, block-sorting data compression. | ||
4 | |||
5 | bzip2/libbzip2 version 1.0.4 of 20 December 2006 | ||
6 | Copyright (C) 1996-2006 Julian Seward <jseward@bzip.org> | ||
7 | |||
8 | Please read the WARNING, DISCLAIMER and PATENTS sections in the | ||
9 | README file. | ||
10 | |||
11 | This program is released under the terms of the license contained | ||
12 | in the file LICENSE. | ||
13 | ------------------------------------------------------------------ | ||
1 | 14 | ||
2 | 15 | ||
3 | 0.9.0 | 16 | 0.9.0 |
@@ -261,7 +274,7 @@ Fixes some minor bugs since the last version, 1.0.2. | |||
261 | decompressor to crash, loop or access memory which does not | 274 | decompressor to crash, loop or access memory which does not |
262 | belong to it. If you are using bzip2 or the library to | 275 | belong to it. If you are using bzip2 or the library to |
263 | decompress bitstreams from untrusted sources, an upgrade | 276 | decompress bitstreams from untrusted sources, an upgrade |
264 | to 1.0.3 is recommended. | 277 | to 1.0.3 is recommended. This fixes CAN-2005-1260. |
265 | 278 | ||
266 | * The documentation has been converted to XML, from which html | 279 | * The documentation has been converted to XML, from which html |
267 | and pdf can be derived. | 280 | and pdf can be derived. |
@@ -273,3 +286,29 @@ Fixes some minor bugs since the last version, 1.0.2. | |||
273 | 286 | ||
274 | * The BZ_NO_STDIO cpp symbol was not properly observed in 1.0.2. | 287 | * The BZ_NO_STDIO cpp symbol was not properly observed in 1.0.2. |
275 | This has been fixed. | 288 | This has been fixed. |
289 | |||
290 | |||
291 | 1.0.4 (20 Dec 06) | ||
292 | ~~~~~~~~~~~~~~~~~ | ||
293 | Fixes some minor bugs since the last version, 1.0.3. | ||
294 | |||
295 | * Fix file permissions race problem (CAN-2005-0953). | ||
296 | |||
297 | * Avoid possible segfault in BZ2_bzclose. From Coverity's NetBSD | ||
298 | scan. | ||
299 | |||
300 | * 'const'/prototype cleanups in the C code. | ||
301 | |||
302 | * Change default install location to /usr/local, and handle multiple | ||
303 | 'make install's without error. | ||
304 | |||
305 | * Sanitise file names more carefully in bzgrep. Fixes CAN-2005-0758 | ||
306 | to the extent that applies to bzgrep. | ||
307 | |||
308 | * Use 'mktemp' rather than 'tempfile' in bzdiff. | ||
309 | |||
310 | * Tighten up a couple of assertions in blocksort.c following automated | ||
311 | analysis. | ||
312 | |||
313 | * Fix minor doc/comment bugs. | ||
314 | |||