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

build efl with meson
author Hans-G?nter Theisgen
date Thu Apr 09 16:25:22 2020 +0100 (2020-04-09)
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;