mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
nptl: Fix abort in case of set*id failure [BZ #17135]
If a call to the set*id functions fails in a multi-threaded program,
the abort introduced in commit 13f7fe35ae
was triggered.
We address by checking that all calls to set*id on all threads give
the same result, and only abort if we see success followed by failure
(or vice versa).
This commit is contained in:
@ -578,6 +578,8 @@ extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *buffer
|
||||
|
||||
extern void __nptl_deallocate_tsd (void) attribute_hidden;
|
||||
|
||||
extern void __nptl_setxid_error (struct xid_command *cmdp, int error)
|
||||
attribute_hidden;
|
||||
extern int __nptl_setxid (struct xid_command *cmdp) attribute_hidden;
|
||||
#ifndef SHARED
|
||||
extern void __nptl_set_robust (struct pthread *self);
|
||||
|
Reference in New Issue
Block a user