mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
e9cb831ee1
The patch file added in the last commit was based on this linked PR (authored by me).
14 lines
451 B
Diff
14 lines
451 B
Diff
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)
|
|
mkdir(param.mountpoint, 0750);
|
|
}
|
|
|
|
- struct fuse_operations fuse7z_oper;
|
|
+ struct fuse_operations fuse7z_oper = {0};
|
|
fuse7z_oper.init = fuse7z_init;
|
|
fuse7z_oper.destroy = fuse7z_destroy;
|
|
fuse7z_oper.readdir = fuse7z_readdir;
|