summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_cab.c
Commit message (Expand)AuthorAgeFilesLines
* cab reader: cast to int when subtracting unsigned integersMartin Matuska2022-12-071-1/+1
* Extend the usage of the DONT_FAIL_ON_CRC_ERROR macroJulien Voisin2022-10-161-0/+2
* Fixed issue #1743: Changed sprintf to safer snprintfSean McBride2022-06-221-1/+1
* Fixed double free when calling lzx_huffman_init frees pointer ds-Ondrej Dubaj2021-03-311-1/+0
* Use standard format specifiersuyjulian2020-07-071-1/+1
* Fix of MSZIP signature parsingAlexander Chaikovsky2019-05-071-2/+2
* Remove fallback tree in LZX decoder.Joerg Sonnenberger2017-05-011-140/+14
* constify variables moreMike Frysinger2017-03-231-1/+1
* Avoid endless loop when parsing MSZIP signature in cab archivesMartin Matuska2017-01-251-0/+2
* Spelling fixes (#831)Graham Percival2016-12-041-4/+4
* Reread the CAB header skipping the self-extracting binary code.Joerg Sonnenberger2016-12-011-2/+3
* Detect encrypted archive entries (ZIP, RAR, 7Zip)Konrad Kleine2013-09-171-1/+3
* Fix build failure with zlib on Win64.Michihiro NAKAJIMA2012-11-071-2/+2
* Fix build failure on Win64.Michihiro NAKAJIMA2012-11-071-12/+13
* Fix build failure on mingw32 for x86-64.Michihiro NAKAJIMA2012-10-041-12/+12
* Implement function used to seek within data blocks.Andres Mejia2012-09-271-0/+1
* Avoid a warning that Clang Static Analyzer complainedMichihiro NAKAJIMA2012-04-061-1/+2
* Change the default permissions of the regular files in CAB and 7-Zip archives...Michihiro NAKAJIMA2012-03-241-1/+1
* Fix a compiler warning about redundant 'r' declaration.Tim Kientzle2012-03-221-1/+1
* Improve the listing performance of CAB reader; Do not decode compressed dataMichihiro NAKAJIMA2012-03-221-0/+23
* Use memcpy when copying an uncompressed block for CAB reader performance.Michihiro NAKAJIMA2012-03-221-13/+11
* Issue 250:problem extracting from CAB file.Michihiro NAKAJIMA2012-03-211-25/+38
* An additional fix of issue 249.Michihiro NAKAJIMA2012-03-201-0/+5
* Fix the bug which the patch for issue 249 made, which bug is thatMichihiro NAKAJIMA2012-03-201-38/+21
* Issue 249: Uncompressed CAB fails to read subfile when archive has certain st...Michihiro NAKAJIMA2012-03-151-3/+2
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-16/+17
* Issue 243: CAB decompression doesn't work when libarchive build with MSVC2010.Michihiro NAKAJIMA2012-02-181-1/+4
* Fix issue 241:CAB decompression not 64bit compatible.Michihiro NAKAJIMA2012-02-161-3/+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
* 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
* Issue 195: Code cleanups.Tim Kientzle2011-11-201-20/+15
* Rename lzx_br_read_ahead to lzx_br_read_ahead_0, and also renameMichihiro NAKAJIMA2011-09-051-8/+11
* LZX fotter-bits can take 17 bits, and so a bit reader should handleMichihiro NAKAJIMA2011-09-041-8/+12
* Improve decoding huffman code in both lha and cab reader.Michihiro NAKAJIMA2011-09-041-25/+15
* Issue 176: Const-ify several static arrays.Michihiro NAKAJIMA2011-09-011-2/+2
* Fix memory leaks in the cab reader.Michihiro NAKAJIMA2011-08-091-0/+1
* Effectively read compressed data into a cache buffer of bit readersMichihiro NAKAJIMA2011-08-071-12/+14
* Throw out a macro optimization for byte swap on x86 processor.Michihiro NAKAJIMA2011-08-061-24/+9
* Fix build on Visual Studio.Michihiro NAKAJIMA2011-08-031-1/+1
* Correct lzx_le32dec.Michihiro NAKAJIMA2011-08-031-1/+1
* Rework lzh and lzx decoding to improve its performance.Michihiro NAKAJIMA2011-08-021-194/+305
* Reduce a use of memory for decoding huffman code in both lha and cab reader.Michihiro NAKAJIMA2011-08-011-115/+283
* Fix a comment about the garbage bytes of CFDATA compressed by the deflate com...Michihiro NAKAJIMA2011-06-251-5/+5
* Remove unneeded code in cab reader.Michihiro NAKAJIMA2011-05-161-1/+0
* Rework a handling of memory allocation failure in string conversion;Michihiro NAKAJIMA2011-05-161-0/+5
* Clean up the code Borland C compiler complains of at cab reader. Michihiro NAKAJIMA2011-05-161-3/+3
* Use archive_entry_copy_*_l functions at cab format reader.Michihiro NAKAJIMA2011-05-111-73/+64
* Apply the default string conversion(mostly OEMCP ==> ACP) to cab reader.Michihiro NAKAJIMA2011-04-121-1/+14