summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_lha.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Rework lzh and lzx decoding to improve its performance.Michihiro NAKAJIMA2011-08-021-136/+295
* Reduce a use of memory for decoding huffman code in both lha and cab reader.Michihiro NAKAJIMA2011-08-011-117/+299
* Rework a handling of memory allocation failure in string conversion;Michihiro NAKAJIMA2011-05-161-0/+10
* Use archive_entry_copy_*_l functions at lha format reader.Michihiro NAKAJIMA2011-05-111-69/+50
* Properly report string conversion failure.Michihiro NAKAJIMA2011-04-121-2/+9
* Rename archive_string_append_from_wcs_to_mbs function to archive_string_appen...Michihiro NAKAJIMA2011-04-111-1/+1
* Remove first argument of archive_wstring_append_from_mbs/archive_string_appen...Michihiro NAKAJIMA2011-04-111-7/+5
* Choose the charset described in the archive file when it's available even if ...Michihiro NAKAJIMA2011-04-091-15/+16
* Rename archive_string_append_from_unicode_to_mbs back to archive_string_appen...Michihiro NAKAJIMA2011-04-061-1/+1
* Rename "charset" option to "hdrcharset" since the name "charset" is not clear,Michihiro NAKAJIMA2011-04-061-2/+2
* Give the API caller a memory allocation failure of a string conversion object...Michihiro NAKAJIMA2011-04-041-0/+2
* Fix a replacement of Windows path separator in CP932 locale.Michihiro NAKAJIMA2011-04-011-17/+21
* Improve character-set conversion functions.Michihiro NAKAJIMA2011-03-281-17/+26