This commit is contained in:
Tim Savannah 2017-06-15 03:23:23 +00:00 committed by GitHub
commit 00ef14fc94
3 changed files with 7 additions and 1 deletions

View file

@ -21,3 +21,4 @@ Serge Belyshev for encryption help and code
Ulrich Drepper for MD5 implementation
PolarSSL authors for sha512 + aes128 implementation
Fernando Auil for lrzip completion
Tim Savannah - liblrzip FILE compress/decompress + bug fix

View file

@ -1,5 +1,10 @@
lrzip ChangeLog
JUNE 2017, version 0.640 Con Kolivas, Tim Savannah
* Fix memory leak in decompress when output to stdout
* Fix liblrzip compression/decompression using FILEs other than stdin/stdout
JUNE 2016, version 0.630 Con Kolivas, Peter Hyman, Petr Písař, Joel Fredrikson
* checksum.buf should only be changed after the semaphore wait

View file

@ -2,7 +2,7 @@
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_maj], [0])
m4_define([v_min], [6])
m4_define([v_mic], [31])
m4_define([v_mic], [40])
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
m4_define([v_v], m4_join([], v_min, v_mic))
m4_define([v_ver], [v_maj.v_v])