wok-next view perl-fuse/stuff/patches/fuse-2.9.0.patch @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents
children
line source
1 Fix missing "temp" variable declaration in _PLfuse_release,
2 which only affects 32-bit systems using FUSE 2.9.0 or later.
3 https://github.com/dpavlin/perl-fuse/commit/8603ed015c80a48b4e6907e46445219fe1f09d24
5 --- a/Fuse.xs
6 +++ b/Fuse.xs
7 @@ -755,6 +755,9 @@
8 int _PLfuse_release (const char *file, struct fuse_file_info *fi) {
9 int rv;
10 int flags = fi->flags;
11 +#if FUSE_VERSION >= 29 && !defined(PERL_HAS_64BITINT)
12 + char *temp;
13 +#endif
14 FUSE_CONTEXT_PRE;
15 DEBUGf("release begin\n");
16 ENTER;