The patch file added in the last commit was based on this linked PR
(authored by me).
This commit is contained in:
yvt 2023-04-12 01:24:15 +09:00
parent b121f98160
commit e9cb831ee1
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
./no-pthread.patch
# Zero-initialize unset fields of `struct fuse_operations` so that
# garbage values don't cause segfault.
# <https://github.com/kedazo/fuse-7z-ng/pull/8>
./zero-init-fuse-operations.patch
];

View file

@ -1,4 +1,5 @@
Zero-initialize unset fields of `struct fuse_operations`.
<https://github.com/kedazo/fuse-7z-ng/pull/8>
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -195,7 +195,7 @@ main (int argc, char **argv)