aboutsummaryrefslogtreecommitdiffstats
path: root/libexfat
Commit message (Expand)AuthorAgeFilesLines
* Add support for building on AndroidSteve Kondik2015-11-103-2/+14
* Flush clusters bitmap on each file close.relan2015-11-071-1/+1
* Move nodes flush from exfat_flush() into a separate function.relan2015-11-073-4/+9
* Support platform macros for GNU/kFreeBSD and GNU/HURD.relan2015-10-091-1/+1
* Detect infinite loop in rootdir_size().relan2015-09-241-12/+21
* Check sector and cluster size before use.relan2015-09-241-10/+17
* Do not set archive bit on directory creation.relan2015-09-241-1/+1
* Drop version.h header.relan2015-08-263-33/+1
* Include local headers before system headers.relan2015-08-263-4/+7
* Use GNU build system (autotools).relan2015-08-261-0/+39
* Support musl libc that does not define __GLIBC__ macro.relan2015-08-241-1/+1
* Turn "FS is larger than device" error into warning.relan2015-08-241-5/+3
* Recognize optional entries.relan2015-08-242-2/+13
* Update copyright years.relan2015-08-2415-15/+15
* Move off_t size check from build script to code.relan2015-08-241-0/+4
* Pass default_permissions to FUSE.relan2015-08-241-5/+3
* Bump version to 1.1.0 and update changelog.relan2015-08-241-1/+1
* Update copyright years.relan2015-08-2415-15/+15
* Use bool type in fetch_next_entry().relan2015-08-241-9/+9
* Use bool type in verify_vbr_checksum().relan2015-08-241-8/+7
* Rename real_size to valid_size and add comment about this field.relan2015-08-242-12/+14
* Print errno on device open/close/fsync failure.relan2015-08-241-5/+7
* Use apostrophe for both opening and closing quotes in messages.relan2015-08-242-14/+14
* Fix opening of a regular file (broken in r403).relan2015-08-241-9/+2
* Set errno to EROFS on failure to open the device in RW mode.relan2015-08-241-2/+10
* Handle I/O errors in exfat_put_node().relan2015-08-244-20/+84
* Check device size on mount.relan2015-08-241-0/+13
* Validate VBR checksum before other checks.relan2015-08-241-19/+21
* Fix return value from exfat_rename().relan2015-08-241-1/+1
* Fix memory use after free on error paths.relan2015-08-241-2/+2
* Fix compilation on OpenBSD.relan2015-08-241-1/+1
* Add OpenBSD support.relan2015-08-242-3/+34
* Relax node size check. This fixes pagefile.sys error.relan2015-08-241-9/+4
* Move node checks into a separate function check_node().relan2015-08-241-29/+39
* Simplify return code checking in shrink_directory().relan2015-08-241-5/+1
* Fix bitmaps handling on big-endian machines.relan2015-08-242-1/+8
* Handle I/O error in exfat_next_cluster().relan2015-08-243-12/+42
* Fix return codes from exfat_close() and exfat_fsync().relan2015-08-241-7/+17
* Handle I/O error in exfat_flush().relan2015-08-243-5/+10
* Handle I/O errors in exfat_flush_node().relan2015-08-242-13/+24
* Close device and free super block on failure to read boot sector.relan2015-08-241-0/+2
* Handle I/O errors in erase_entry().relan2015-08-241-9/+21
* Handle I/O errors in rename_entry().relan2015-08-241-12/+23
* Handle I/O error in set_next_cluster().relan2015-08-241-12/+25
* Handle I/O error in erase_raw().relan2015-08-241-6/+11
* Handle I/O errors.relan2015-08-244-43/+148
* Give the caller of pread()/pwrite() a chance to handle I/O errors.relan2015-08-242-12/+8
* Address clusters bitmap using size_t-sized blocks instead of bytes.relan2015-08-243-14/+24
* Check max continuations count when reading file entry.relan2015-08-241-0/+6
* Fix buffer overflows for file names of exactly 256 UTF-16 chars.relan2015-08-242-3/+8