summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_tar.c
Commit message (Expand)AuthorAgeFilesLines
...
* Merge pull request #22 from amejia1/seek-supportAndres Mejia2012-09-301-0/+1
|\
| * Implement function used to seek within data blocks.Andres Mejia2012-09-271-0/+1
* | Refactored common code into a single functionBrian Weaver2012-09-261-42/+13
* | Add tighter checks to avoid reading past end of bufferBrian Weaver2012-09-261-22/+36
|/
* Back out of b0eb750cab. It caused several tar/pax test failures.Michihiro NAKAJIMA2012-09-261-30/+22
* Add tighter checks to avoid reading past end of bufferBrian Weaver2012-09-251-22/+30
* Avoid the error which Clang Static Analyzer says "Null pointer argument in ca...Michihiro NAKAJIMA2012-02-271-0/+3
* Cleanup; use a for loop statement instead of a goto statement.Michihiro NAKAJIMA2012-02-261-46/+47
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-26/+28
* Fix issue 237.Michihiro NAKAJIMA2012-02-141-6/+8
* Fix build failure with -Wextra -Wunused GCC options since it happend on FreeB...Michihiro NAKAJIMA2012-02-091-0/+2
* Spelling fixes from Ulrich Spoerlein.Tim Kientzle2012-01-071-1/+1
* Try to decrease the performance hit of seeking during the bid phase.Tim Kientzle2011-11-201-3/+5
* Issue 195: Reduce the number of casts, fix up whitespace, replaceTim Kientzle2011-11-201-50/+40
* Fix whitespace.Colin Percival2011-08-161-1/+1
* Typos in comments: "a archive" -> "an archive", "formts" -> "formats",Colin Percival2011-08-161-2/+2
* Correct comments.Michihiro NAKAJIMA2011-07-141-1/+1
* Add support for a pax textended keyword, "SUN.holesdata", which describes whe...Michihiro NAKAJIMA2011-07-121-9/+66
* Extend the MacOS compatibility test to verify that the attribute blobTim Kientzle2011-06-251-2/+2
* Shift away "tar:utf8type=libarchive2x" option which is to read a pax file mad...Michihiro NAKAJIMA2011-06-161-13/+8
* Rework enabling a operation to a wrong UTF-8 string made with Libarchive 2.x.Michihiro NAKAJIMA2011-06-081-8/+6
* Rework a handling of memory allocation failure in string conversion;Michihiro NAKAJIMA2011-05-161-12/+75
* Use archive_mstring_*_l interface in archive_acl_* functionsMichihiro NAKAJIMA2011-05-121-29/+20
* Increase robustness for an empty filename or an invalid filename on Windows,Michihiro NAKAJIMA2011-05-111-16/+45
* Use archive_entry_copy_*_l functions at tar format reader.Michihiro NAKAJIMA2011-05-111-92/+59
* Do not lose some conversion error.Michihiro NAKAJIMA2011-05-041-1/+3
* Introudce "tar:utf8type=libarchive2x" option for the incorrect UTF-8 stringMichihiro NAKAJIMA2011-04-191-1/+17
* Allow to apply the charset specified by the hdrcharset option to PAX reader o...Michihiro NAKAJIMA2011-04-121-3/+8
* Pax format uses only both BINARY and UTF-8 to its header data.Michihiro NAKAJIMA2011-04-081-10/+8
* IntroduceMichihiro NAKAJIMA2011-04-071-1/+11
* Rename "charset" option to "hdrcharset" since the name "charset" is not clear,Michihiro NAKAJIMA2011-04-061-2/+2
* archive_read_support_format_tar.c: fix looming buffer overflowRoman Neuhauser2011-04-041-27/+34
* Give the API caller a memory allocation failure of a string conversion object...Michihiro NAKAJIMA2011-04-041-3/+16
* This change almost revert r3148,r3149 because of my misunderstanding.Michihiro NAKAJIMA2011-04-041-69/+41
* Properly check a character-set name in hdrcharset of pax header.Michihiro NAKAJIMA2011-04-021-12/+41
* archive_read_support_format_tar.c: s/__archive_errx/archive_set_error/Roman Neuhauser2011-03-301-18/+33
* Improve character-set conversion functions.Michihiro NAKAJIMA2011-03-281-66/+80
* Remove UTF-8 <===> WCS conversion code, which was highly based on the wrogMichihiro NAKAJIMA2011-03-251-20/+8
* Add an mbs version of ACL control functions in order to reduceMichihiro NAKAJIMA2011-03-251-39/+10
* Remove unneeded statement.Michihiro NAKAJIMA2011-03-221-30/+0
* Remove local character-set conversion code from archive_read_support_format_t...Michihiro NAKAJIMA2011-03-221-136/+65
* Add support for a charset option to tar/pax format reader.Michihiro NAKAJIMA2011-03-221-74/+169
* DO NOT USE C++ style comments like // in C code !Björn Jacke2011-02-171-7/+9
* If the size field is negative (which can happen with base-256Tim Kientzle2010-12-311-7/+17
* The other part of r2794.Tim Kientzle2010-11-201-1/+1
* Visual Studio 9 does not like this use of 'inline'.Tim Kientzle2010-11-201-1/+1
* Move the abstract ACL manipulations into a separate source file.Tim Kientzle2010-11-201-4/+4
* Issue 112: Use int64_t for tracking total size of entryTim Kientzle2010-10-261-3/+3
* finish conversion over to tar_flush_unconsumed, and converting adhoc readahea...Brian Harring2010-09-251-27/+35
* more work to pair tar's readahead/consume; this still isn't perfect (the disa...Brian Harring2010-09-251-52/+90