summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_iso9660.c
Commit message (Expand)AuthorAgeFilesLines
* ISO reader: fix possible heap buffer overflow in read_children()Martin Matuska2022-03-301-1/+2
* Bug #1128: Deletion of unnecessary checks before calls of the function “fre...Markus Elfring2019-02-041-4/+2
* iso9660: Fail when expected Rockridge extensions is missingDaniel Axtens2019-01-161-1/+10
* iso9660: unduplicate and simplify code in parse_file_info()Martin Matuska2018-08-051-8/+8
* iso9660: validate directory record lengthJohn Starks2018-07-251-6/+11
* Avoid memcpy of zero length, the source can be NULL.Joerg Sonnenberger2017-04-291-2/+3
* ISO9960 reader: free leaked archive_string in parse_file_info()Martin Matuska2017-01-311-0/+1
* Always free `file` on failure in `parse_file_info`Ngie Cooper2017-01-161-12/+13
* Spelling fixesGraham Percival2016-12-301-1/+1
* Spelling fixesGraham Percival2016-12-271-6/+6
* Issue 717: Fix integer overflow when computing location of volume descriptorTim Kientzle2016-06-191-2/+2
* Github Issue #522: Detect cycles in the ISO directory treeTim Kientzle2015-04-111-3/+13
* Issue #522: Dir loop in malformed ISO causes segfaultTim Kientzle2015-04-111-6/+21
* Reformat long calculation, make consistent across copiesTim Kientzle2014-06-221-13/+16
* Detect encrypted archive entries (ZIP, RAR, 7Zip)Konrad Kleine2013-09-171-1/+3
* Fix build failure with zlib on Win64.Michihiro NAKAJIMA2012-11-071-5/+6
* Use memcmp to check null bytes for iso9660 bidder to improveMichihiro NAKAJIMA2012-11-071-37/+41
* Fix build failure on Mac OS X Mountain Lion.Michihiro NAKAJIMA2012-10-311-1/+1
* Make sure that we consume remaining data bytes before readingMichihiro NAKAJIMA2012-10-161-0/+6
* Remove redundant initialization.Michihiro NAKAJIMA2012-10-161-5/+1
* Enable the iso9660 reader to seek a file pointer for readingMichihiro NAKAJIMA2012-10-091-26/+26
* - Clean up style.Michihiro NAKAJIMA2012-10-091-78/+94
* Implement function used to seek within data blocks.Andres Mejia2012-09-271-0/+1
* Remove fallthough-based logic from iso9660 readerDan McGee2012-03-271-50/+25
* Fix segfault in iso9660 readerDan McGee2012-03-271-0/+1
* Use memcmp to find SP extension bytesDan McGee2012-03-271-3/+1
* Fix the error which Clang Static Analyzer says "Assigned value is garbage or ...Michihiro NAKAJIMA2012-02-271-1/+1
* Remove dead code in parsing Rockridge extension SL.Michihiro NAKAJIMA2012-02-261-3/+0
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-6/+6
* Fix build failure with -Wextra -Wunused GCC options since it happend on FreeB...Michihiro NAKAJIMA2012-02-091-2/+3
* Issue 224:Mishandling CD9660 images with RockRidge extensions from FreeBSD ma...Michihiro NAKAJIMA2012-01-191-0/+13
* If the format of times in ISO images is invalid, reset the time to 0.Michihiro NAKAJIMA2012-01-191-3/+14
* Replace integer constant LL suffix with cast to int64_tBrad King2012-01-111-1/+1
* Issue 204: Fix shadowed local in archive_read_support_format_iso9660.cMichihiro NAKAJIMA2011-12-261-3/+3
* archive_string_sprintf (used by archive_set_error) doesn't supportTim Kientzle2011-11-271-1/+1
* Fail if CE size/offset doesn't lie within the current block.Tim Kientzle2011-11-261-0/+6
* Further the robustness of the ISO reader against corrupted ISO images.Michihiro NAKAJIMA2011-11-241-0/+7
* Issue 199: Improve robustness against corrupted ISO images.Michihiro NAKAJIMA2011-11-231-17/+75
* Fix issue 199; improve robustness to corrupted ISO images.Michihiro NAKAJIMA2011-11-201-1/+9
* Try to decrease the performance hit of seeking during the bid phase.Tim Kientzle2011-11-201-2/+7
* Issue 195: Remove a redundant variable.Tim Kientzle2011-11-201-4/+2
* Make sure a local variable 'parent' is not NULL when access to its member.Michihiro NAKAJIMA2011-09-141-1/+1
* Additional fix to issue 168 because the change of r3642 was not sufficient.Michihiro NAKAJIMA2011-08-271-8/+14
* Fix issue 168.Michihiro NAKAJIMA2011-08-191-189/+258
* Relax the bidder to accept images created by buggy FreeBSD/NetBSDTim Kientzle2011-08-161-1/+3
* Typos in comments: "a archive" -> "an archive", "formts" -> "formats",Colin Percival2011-08-161-2/+2
* Fix comment and style. no functional change.Michihiro NAKAJIMA2011-06-211-11/+20
* Return a correct status when a entry has an incorrect linkname.Michihiro NAKAJIMA2011-05-241-1/+1
* Fix a silly bug made by previous change.Michihiro NAKAJIMA2011-05-191-2/+2
* Increase a buffer size for Joliet extension names up to 1024 bytes.Michihiro NAKAJIMA2011-05-191-8/+29