aboutsummaryrefslogtreecommitdiff
path: root/archival
AgeCommit message (Expand)Author
2018-07-24gzip: unbreak FEATURE_GZIP_LEVELS, closes 11171Denys Vlasenko
2018-07-06cpio: if longopts are enabled, accept --null (synonym for -0)Denys Vlasenko
2018-07-06tweak help textsDenys Vlasenko
2018-06-06restore documentation on the build config languageKartik Agaram
2018-05-25unlzma: close another SEGV possibilityDenys Vlasenko
2018-05-22tar: fix interaction of delayed symlink and hardlink creationHarald van Dijk
2018-04-24unlzma: do emit the error message on bad input, when we exit with 1Denys Vlasenko
2018-04-19unlzma: fix another SEGV caseDenys Vlasenko
2018-04-15ar: stop using static dataDenys Vlasenko
2018-04-13dpkg: fix symlink creation, closes 10941Denys Vlasenko
2018-04-08unlzma: fix segfault on bad archiveDenys Vlasenko
2018-04-08bzip2: fix two crashes on corrupted archivesDenys Vlasenko
2018-04-08lzop: remove method checks which are always true/falseDenys Vlasenko
2018-04-08lzop: buffer several 32-bit writes when we start a new compressed blockDenys Vlasenko
2018-04-08lzop: reuse stringsDenys Vlasenko
2018-04-08lzop: checksum reads do not need to be checksummedDenys Vlasenko
2018-04-08lzop: don't support ancient versions < 0.94 (15 Oct 1997)Denys Vlasenko
2018-04-08lzop: code shrink by using header_t matching on-disk layoutDenys Vlasenko
2018-04-07tar: trim help textDenys Vlasenko
2018-04-01libbb: new function bb_die_memory_exhaustedDenys Vlasenko
2018-03-30cpio: extract "unsafe" symlinks the same way tar/unzip doesNatanael Copa
2018-03-16tar: add -o and -k to short --help tooDenys Vlasenko
2018-03-16tar: add -k and -o to --helpDenys Vlasenko
2018-02-20tar,unzip: postpone creation of symlinks with "suspicious" targetsDenys Vlasenko
2018-02-07bzip2: expose tuning knob for faster/smaller codeDenys Vlasenko
2018-02-06unzip: do not set directory mode to 0777Denys Vlasenko
2018-02-06ar: hopefully fix out-of-bounds read in get_header_ar()Denys Vlasenko
2018-02-05bzip2: work around bad compiler optimizationDenys Vlasenko
2018-02-04gunzip: fix from gzip-1.3.12 for gzip file with all zero length codesDenys Vlasenko
2018-02-03bzip2: move runningOrder[] back to stack - 256 bytes is not muchDenys Vlasenko
2018-02-03bzip2: move ->origPtr out of struct EState, make a few members smallerDenys Vlasenko
2018-02-03bzip2: pass sorting params through EState* pointerDenys Vlasenko
2018-02-03gzip2: small simplification in mainSimpleSort()Denys Vlasenko
2018-02-03bzip2: a few more locals converted to generic typesDenys Vlasenko
2018-02-03bzip2: eliminate one parameter to mainQSort3()Denys Vlasenko
2018-02-03bzip2: small simplification in mainSort()Denys Vlasenko
2018-02-03bzip2: convert some locals to unsigned'sDenys Vlasenko
2018-02-03bzip2: runningOrder[] values are always 0..255, make it uint8Denys Vlasenko
2018-02-03bzip2: remove redundant clearing of an alredy unset bitDenys Vlasenko
2018-02-03bzip2: eliminate write-only local numQSortedDenys Vlasenko
2018-02-03bzip2: make locals in mainSort() saner, convert one of them from uint16 to un...Denys Vlasenko
2018-02-03bzip2: remove redundant loop termination check in mainSort()Denys Vlasenko
2018-02-03bzip2: reduce indentation, no code changesDenys Vlasenko
2018-02-03bzip2: reuse zPend processing codeDenys Vlasenko
2018-02-03bzip2: shrink makeMaps_e()Denys Vlasenko
2018-02-03bzip2: optimize zPend variable codeDenys Vlasenko
2018-02-03bzip2: have two separate "store bit 0" and "store bit 1" functionsDenys Vlasenko
2018-02-03bzip2: ~1% speedup by special-casing "store 1 bit" functionDenys Vlasenko
2018-02-03bzip2: rewrite bit of code which depends on integer overflowDenys Vlasenko
2018-02-03bzip2: delete write-only fave[] arrayDenys Vlasenko