summaryrefslogtreecommitdiffstats
path: root/lib/libfuse
AgeCommit message (Expand)AuthorFilesLines
2017-10-24Add more sanity checks to prevent a segfault and a NULL-dereferencempi1-4/+9
2017-08-21Use waitpid()/EINTR idiom for the specific pid, rather than generic wait(),deraadt1-3/+6
2017-01-04Revert fuse_opt.c r1.17. It broke exfat-fuse and perhaps other plugins.stsp1-2/+2
2016-11-23Empty strings are invalid arguments.mpi1-2/+2
2016-09-14Generate pkg-config files at build time like everything else. Thisnatano1-2/+3
2016-09-07Fix fuse node lookups. Currently fusefs nodes in the kernel remember thenatano3-26/+69
2016-09-04only regen pkg-config files when required; ok jaspernatano1-2/+4
2016-08-30Use struct stat for storing attributes in fusebufs, because using structnatano2-59/+35
2016-08-27Pull in <sys/time.h> for struct timespecguenther1-1/+2
2016-05-24NUL-terminate argv when parsing options, following otherokan1-2/+3
2016-05-24Add missing strdup NULL checks; from Ray Lai.okan2-3/+9
2016-05-18update links; from rayjmc1-5/+7
2016-03-30for some time now mandoc has not required MLINKS to functionjmc1-18/+1
2015-12-24remove NULL-check before free()mmcc1-3/+2
2015-10-19missing deref on char check. from David Bindermantedu1-2/+2
2015-08-24When an option is not recognized call the processing function withmpi1-4/+6
2015-07-07Skip mountpoint checking in case we only want the version or helpajacoutot1-3/+3
2015-07-07Unbreak option parsing:ajacoutot1-1/+8
2015-06-03Remove -Werror from the Makefile: as it happened with asprintf, itreyk1-2/+2
2015-06-03It is better to check the asprintf return value for -1 instead of thereyk1-5/+5
2015-02-10Add a stub option for big_writes. This is needed by gvfs.ajacoutot1-1/+2
2015-02-06SIZE_MAX is standard, we should be using it in preference to themillert1-2/+3
2015-01-16Move to the <limits.h> universe.deraadt1-2/+2
2014-10-08use reallocarray(); ok dougderaadt1-2/+2
2014-05-20Add -o max_read=XXX support in fuse. This is needed by usmb to have asyl1-1/+2
2014-05-20Add support for -o XXX or -oXXX options in libfuse.syl3-22/+59
2014-05-19as reported by Helg, should use realpath for mounts. ok guenther syltedu1-3/+3
2014-04-28Add support for 255 character file names in fuse.syl3-8/+12
2014-04-15Init outargs only once, and fix a bad bzero().syl1-3/+3
2014-03-24Warn the user if there is a missing mountpoint parameter.syl1-2/+4
2014-02-05Allow libfuse to compile with WARNINGS=yes. No functional change.syl1-3/+4
2014-02-05check return values in libfuse.syl4-14/+245
2014-01-29Add fuse support for IO_APPEND.syl1-3/+1
2014-01-23Fix .readdir() code following what is done in .getdir().syl1-16/+12
2014-01-21Mark fuse_opt_parse()'s third argument as a point to const, to match thejca2-7/+7
2014-01-20Include fuse_opt.h in fuse.h.syl1-1/+3
2014-01-20hook mknod() if create() implementation is not present.syl1-3/+9
2014-01-16Add support for mknod in fuse.syl1-1/+32
2014-01-02Call fuse callbacks on FBT_INIT and FBT_DESTROY.syl1-3/+21
2013-12-20Add support for truncate in fuse.syl1-1/+9
2013-12-17define FUSE_{MAJOR,MINOR}_VERSION which many fuse helpers assume is defined.jasper1-1/+3
2013-12-10Remove an attempt to free a non-heap object.syl1-3/+3
2013-12-09Fix issues with dirent returning junk due to removal of bzero in version 1.14.beck1-4/+5
2013-12-03Does not append a NUL character to buf in readlink(2).syl1-3/+14
2013-12-03Add support for FBT_RECLAIM that allow us to free the representationsyl3-3/+56
2013-11-21Fix a big memory leak in libfuse.syl1-11/+10
2013-11-13Document the negative errno quirk used by callbacks in struct fuse_operations.stsp1-1/+6
2013-11-11In fuse_loop(), use ssize_t to store return values from read(2) and write(2).stsp1-6/+6
2013-11-09Simplify fuse_unmount(). No functional change.stsp1-7/+3
2013-11-09Properly check realpath() return value during argv processing in libfuse.stsp1-3/+8