summaryrefslogtreecommitdiff
path: root/libarchive/archive_write_set_format_iso9660.c
Commit message (Expand)AuthorAgeFilesLines
* Make single bit bitfields unsigned to avoid clang 16 warning (#1860)Dimitry Andric2023-04-171-7/+7
* replace time64 functions with normal ones (#1830)Rosen Penev2023-01-091-8/+4
* cleanup _localtime64_s (#1820)Rosen Penev2022-12-201-6/+6
* windows: make sure we use the right calling convention for libcDustin Howett2021-11-201-0/+2
* Fill in Unknown for the system identifier if there is no utsname and not Windowsuyjulian2020-07-081-1/+2
* Fix use after free in ISO9660 and XAR writerMartin Matuska2020-02-011-5/+3
* Multiple code fixes and optimizationsMartin Matuska2020-01-141-7/+7
* Correct some typographical and grammatical errors.Peter Pentchev2019-09-211-3/+3
* Fix a few obvious resource leaks and strcpy() misusesPavel Raiskup2018-11-231-2/+2
* Avoid using C99 declaration-after-statement syntaxBrad King2017-02-241-2/+4
* Merge pull request #845 from yaneurabeya/libarchive-coverity-fixesTim Kientzle2017-01-281-1/+1
|\
| * Clarify that calling memset with '0' is intentional by casting theNgie Cooper2017-01-161-1/+1
* | Correctly convert 32-bit time_t to __time64_tKyrre Sjobak2017-01-261-2/+4
|/
* Spelling fixesGraham Percival2016-12-271-13/+13
* Spelling fixes (#846)Graham Percival2016-12-201-9/+9
* Spelling fixesGraham Percival2016-12-081-2/+2
* Fix a couple of typographical errors.Peter Pentchev2016-07-071-1/+1
* Issue 711: Be more careful about verifying filename lengths when writing ISO...Tim Kientzle2016-05-281-8/+10
* Avoid trailing `,` in enum for ISO C90 compatiblityBrad King2015-10-261-5/+5
* Avoid code analyzer error.Michihiro NAKAJIMA2014-10-051-0/+10
* Cast comparison functions to __compar_fn_t if stdlib.h defines it.Andres Mejia2013-02-071-0/+10
* Fix build failure with zlib on Win64.Michihiro NAKAJIMA2012-11-071-10/+10
* Fix build failure on Win64.Michihiro NAKAJIMA2012-11-071-30/+31
* Fix build failure on mingw32 for x86-64.Michihiro NAKAJIMA2012-10-041-11/+11
* Fix a possibility of memory leaks when realloc fails.Michihiro NAKAJIMA2012-09-181-3/+4
* Rename some internal functions as other related functions.Michihiro NAKAJIMA2012-03-171-2/+2
* Fix a comparison of file names in ISO images.Michihiro NAKAJIMA2012-02-261-2/+2
* On Visual Studio, Enable Warning 4244: 'conversion' conversion from 'type1'Michihiro NAKAJIMA2012-02-191-35/+37
* Fix issue 237.Michihiro NAKAJIMA2012-02-141-1/+6
* Fix build failure in aggressive warningsMichihiro NAKAJIMA2012-02-101-6/+5
* Fix build failure with -Wshadow GCC option since it happend on FreeBSD current.Michihiro NAKAJIMA2012-02-091-2/+1
* When ENOMEM happened in archive_string_append_from_wcs and archive_string_app...Michihiro NAKAJIMA2012-01-231-4/+21
* Rename isoent_rr_move_dir parameter isoent => curentBrad King2012-01-111-21/+21
* Replace integer constant LL suffix with cast to int64_tBrad King2012-01-111-1/+1
* Spelling fixes from Ulrich Spoerlein.Tim Kientzle2012-01-071-4/+4
* Fix spelling error.Andres Mejia2011-12-241-1/+1
* Update comments.Michihiro NAKAJIMA2011-11-161-8/+10
* Set explicit unused arguments in order to avoid several warnings about it, wh...Michihiro NAKAJIMA2011-09-141-0/+1
* Issue 177: Fix --without-zlib compilation.Michihiro NAKAJIMA2011-09-011-0/+6
* In iso9660 writer and xar writer, always overwrite the existing file in the f...Michihiro NAKAJIMA2011-07-141-7/+6
* In the ISO writer, ignore ineffective path names in the ISO9660 file systemMichihiro NAKAJIMA2011-07-101-10/+11
* Ignore a path which looks like the top of directory name, and whose name isMichihiro NAKAJIMA2011-07-091-0/+12
* Stop trimming parent directories at iso9660 writer; users will decideMichihiro NAKAJIMA2011-07-091-27/+0
* Do not write odd data whose size is less than 2048 bytes toMichihiro NAKAJIMA2011-07-091-3/+8
* Remove unneeded code.Michihiro NAKAJIMA2011-06-211-3/+1
* Fix warnings.Michihiro NAKAJIMA2011-06-211-2/+2
* This is the final step to reduce use of both read() and write() system-calls ...Michihiro NAKAJIMA2011-06-211-173/+143
* Fix making a bootable iso image with zisofs option.Michihiro NAKAJIMA2011-06-201-64/+122
* This is second step to reduce use of both read() and write() system-calls in ...Michihiro NAKAJIMA2011-06-201-56/+168
* This is first step to reduce use of both read() and write() system-calls in t...Michihiro NAKAJIMA2011-06-191-363/+503