fuse-7z-ng: link to <https://github.com/kedazo/fuse-7z-ng/pull/8>
The patch file added in the last commit was based on this linked PR (authored by me).
This commit is contained in:
parent
b121f98160
commit
e9cb831ee1
2 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
|
||||||
./no-pthread.patch
|
./no-pthread.patch
|
||||||
# Zero-initialize unset fields of `struct fuse_operations` so that
|
# Zero-initialize unset fields of `struct fuse_operations` so that
|
||||||
# garbage values don't cause segfault.
|
# garbage values don't cause segfault.
|
||||||
|
# <https://github.com/kedazo/fuse-7z-ng/pull/8>
|
||||||
./zero-init-fuse-operations.patch
|
./zero-init-fuse-operations.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
Zero-initialize unset fields of `struct fuse_operations`.
|
Zero-initialize unset fields of `struct fuse_operations`.
|
||||||
|
<https://github.com/kedazo/fuse-7z-ng/pull/8>
|
||||||
--- a/src/main.cpp
|
--- a/src/main.cpp
|
||||||
+++ b/src/main.cpp
|
+++ b/src/main.cpp
|
||||||
@@ -195,7 +195,7 @@ main (int argc, char **argv)
|
@@ -195,7 +195,7 @@ main (int argc, char **argv)
|
||||||
|
|
Loading…
Reference in a new issue