mirror of
git://git.musl-libc.org/musl
synced 2025-02-07 14:41:46 +00:00
remove volatile qualification from category pointers in __locale_struct
commit63c188ec42
missed making this change when switching from atomics to locking for modification of the global locale, leaving access to locale structures unnecessarily burdened with the restrictions of volatile. the volatile qualification was originally added in commit56fbaa3bbe
.
This commit is contained in:
parent
d88e5dfa8b
commit
6753fb68b8
@ -8,7 +8,7 @@
|
||||
struct __locale_map;
|
||||
|
||||
struct __locale_struct {
|
||||
const struct __locale_map *volatile cat[6];
|
||||
const struct __locale_map *cat[6];
|
||||
};
|
||||
|
||||
struct tls_module {
|
||||
|
Loading…
Reference in New Issue
Block a user