mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
fts: Fix symbol redirect for fts_set [BZ #21289]
In a 32-bit environment with _FILE_OFFSET_BITS=64, the __REDIRECT macro
combined with __THROW generates an invalid C++ declaration.
(cherry picked from commit ce39613205
)
This commit is contained in:
parent
27ab0d9518
commit
f035c8d055
@ -1,3 +1,8 @@
|
||||
2017-03-31 Slava Barinov <v.barinov@samsung.com>
|
||||
|
||||
[BZ #21289]
|
||||
* io/fts.h (fts_set): Replace __REDIRECT with __REDIRECT_NTH.
|
||||
|
||||
2017-03-20 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
[BZ #21275]
|
||||
|
5
NEWS
5
NEWS
@ -9,10 +9,11 @@ Version 2.25.1
|
||||
|
||||
The following bugs are resolved with this release:
|
||||
|
||||
[21109] Tunables broken on big-endian
|
||||
[21115] sunrpc: Use-after-free in error path in clntudp_call
|
||||
[20257] sunrpc: clntudp_call does not enforce timeout when receiving data
|
||||
[21015] Document and fix --enable-bind-now
|
||||
[21109] Tunables broken on big-endian
|
||||
[21115] sunrpc: Use-after-free in error path in clntudp_call
|
||||
[21289] Fix symbol redirect for fts_set
|
||||
|
||||
Version 2.25
|
||||
|
||||
|
2
io/fts.h
2
io/fts.h
@ -193,7 +193,7 @@ FTS *__REDIRECT (fts_open, (char * const *, int,
|
||||
int (*)(const FTSENT **, const FTSENT **)),
|
||||
fts64_open);
|
||||
FTSENT *__REDIRECT (fts_read, (FTS *), fts64_read);
|
||||
int __REDIRECT (fts_set, (FTS *, FTSENT *, int), fts64_set) __THROW;
|
||||
int __REDIRECT_NTH (fts_set, (FTS *, FTSENT *, int), fts64_set);
|
||||
# else
|
||||
# define fts_children fts64_children
|
||||
# define fts_close fts64_close
|
||||
|
Loading…
Reference in New Issue
Block a user