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

Some receipts v2: apr, apr-util, aspell, at-spi2-core, at-spi2-atk, atk, atkmm, cairomm, colord, glibmm, libsigc++, libxslt.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 26 16:40:11 2017 +0300 (2017-05-26)
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;