summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_lha.c
Commit message (Expand)AuthorAgeFilesLines
* Extend the usage of the DONT_FAIL_ON_CRC_ERROR macroJulien Voisin2022-10-161-0/+4
* Fixed issue #1743: Changed sprintf to safer snprintfSean McBride2022-06-221-1/+1
* LHA reader UTF16: dirSep must match machine endianessMartin Matuska2020-01-091-3/+8
* LHA reader UTF-16: Encode directory separator with archive_le16enc()Martin Matuska2020-01-091-10/+19
* Fixed endian problem in lha UTF-16 encoding.Claybird2020-01-071-3/+4
* LHA reader: plug two memory leaks on errorMartin Matuska2019-12-151-7/+10
* LHA reader: ensure that UTF-16 input always has a multiple of 2 bytesMartin Matuska2019-11-261-7/+12
* Fixed bugs in cases that dirname and fname have different codepages.Claybird2019-11-071-59/+84
* Fixed broken UTF-16 support on *nix systems.Claybird2019-11-061-51/+27
* Fixed memory leaksClaybird2019-11-061-0/+2
* This adds UNICODE filename support for lha.Claybird2019-11-061-3/+69
* Reject LHA archive entries with negative size.Joerg Sonnenberger2018-07-191-0/+6
* constify variables moreMike Frysinger2017-03-231-1/+1
* Fail with negative lha->compsize in lha_read_file_header_1()Martin Matuska2017-01-191-0/+3
* Spelling fixesGraham Percival2016-12-301-1/+1
* Fix check for GCC >= 4.8Tim Kientzle2016-07-171-2/+5
* Many systems have bswap16 in system headers, so undef it first to avoidJoerg Sonnenberger2016-06-211-0/+1
* Workaround missing byte swap symbol on VS 7.1 Debug buildsBrad King2015-10-261-1/+1
* Issue 402: Failed to recognize empty dir name in lha/lzh fileTim Kientzle2015-02-071-2/+4
* Fix build failure on Windows.Michihiro NAKAJIMA2014-10-121-2/+2
* Remove unneeded code.Michihiro NAKAJIMA2014-10-051-1/+0
* Fix build failure on FreeBSD 9.2.Michihiro NAKAJIMA2014-09-141-2/+3
* Improve lha decompression performance.Michihiro NAKAJIMA2014-08-141-206/+260
* Fix a bug in lha read format.Michihiro NAKAJIMA2014-07-031-1/+1
* Properly set buffer,offset and size when lha format reader returnsMichihiro NAKAJIMA2014-07-021-2/+3
* Detect encrypted archive entries (ZIP, RAR, 7Zip)Konrad Kleine2013-09-171-1/+3
* Fix build failure on Win64.Michihiro NAKAJIMA2012-11-071-8/+8
* Implement function used to seek within data blocks.Andres Mejia2012-09-271-0/+1
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-6/+6
* Fix issue 237.Michihiro NAKAJIMA2012-02-141-5/+7
* Fix build failure with -Wextra -Wunused GCC options since it happend on FreeB...Michihiro NAKAJIMA2012-02-091-1/+1
* Spelling fixes from Ulrich Spoerlein.Tim Kientzle2012-01-071-1/+1
* Remove unnecessary including files.Michihiro NAKAJIMA2011-12-191-4/+0
* Try to decrease the performance hit of seeking during the bid phase.Tim Kientzle2011-11-201-2/+7
* Rename lzh_br_read_ahead, a bit reader macro, to lzh_br_read_ahead_0,Michihiro NAKAJIMA2011-09-051-23/+18
* Do not calculate a next copy position unless it's really needed.Michihiro NAKAJIMA2011-09-041-3/+5
* Improve decoding huffman code in both lha and cab reader.Michihiro NAKAJIMA2011-09-041-25/+16
* Issue 176: Const-ify several static arrays.Michihiro NAKAJIMA2011-09-011-1/+1
* All type of LHa headers have a CRC16 value for a valid check to file contentsMichihiro NAKAJIMA2011-08-311-3/+11
* Rework the handling of a copy of decode data in the lha reader.Michihiro NAKAJIMA2011-08-141-45/+75
* Kill the possibility that a huffman table can be made in no availableMichihiro NAKAJIMA2011-08-081-1/+1
* Add a check of remaining bits in the cache buffer of a bit reader;Michihiro NAKAJIMA2011-08-081-6/+13
* Give __archive_read_ahead a correct header size. there was a problm whenMichihiro NAKAJIMA2011-08-081-1/+1
* Fix a bug in lha reader. Give plenty bits to a pattern table.Michihiro NAKAJIMA2011-08-081-1/+1
* Fix a bug in lha reader. Correctly read remaining bits which are close to the...Michihiro NAKAJIMA2011-08-081-1/+2
* endian.h and sys/endian.h, which I added to use in r3515, are no longer needed.Michihiro NAKAJIMA2011-08-071-6/+0
* Effectively read compressed data into a cache buffer of bit readersMichihiro NAKAJIMA2011-08-071-7/+23
* Throw out a macro optimization for byte swap on x86 processor.Michihiro NAKAJIMA2011-08-061-43/+4
* Back to simply invoke lha_crc16(). Crrently the total cost of theMichihiro NAKAJIMA2011-08-061-23/+4
* Fix build on Visual Studio.Michihiro NAKAJIMA2011-08-031-3/+3