- Update to version 3.9.1

* Fixed memory leak in fuse_session_new().
  * Fixed an issue with the linker version script.
  * Make ioctl prototype conditional on FUSE_USE_VERSION.
    Define FUSE_USE_VERSION < 35 to get old ioctl prototype with
    int commands; define FUSE_USE_VERSION >= 35 to get new ioctl
    prototype with unsigned int commands.
  * Various small bugfixes.

OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse3?expand=0&rev=31
This commit is contained in:
Ismail Dönmez
2020-03-20 06:17:50 +00:00
committed by Git OBS Bridge
parent ef71528d39
commit 2f26f4bec0
6 changed files with 36 additions and 24 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Mar 20 06:15:34 UTC 2020 - Ismail Dönmez <idonmez@suse.com>
- Update to version 3.9.1
* Fixed memory leak in fuse_session_new().
* Fixed an issue with the linker version script.
* Make ioctl prototype conditional on FUSE_USE_VERSION.
Define FUSE_USE_VERSION < 35 to get old ioctl prototype with
int commands; define FUSE_USE_VERSION >= 35 to get new ioctl
prototype with unsigned int commands.
* Various small bugfixes.
-------------------------------------------------------------------
Sat Dec 14 12:47:41 UTC 2019 - Ismail Dönmez <idonmez@suse.com>