diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-10-28 14:45:30 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-10-29 10:00:32 +0100 |
commit | fa4ad104063204add2144df8151aa1135fffdd2d (patch) | |
tree | 3ef5ca9ede59cc3fc2a3a11f20937e6e43af1bed | |
parent | 4dd8641461463b667b5503ab0ea4abcf261378a9 (diff) | |
download | glibc-release/2.38/master.zip glibc-release/2.38/master.tar.gz glibc-release/2.38/master.tar.bz2 |
elf: Change ldconfig auxcache magic number (bug 32231)release/2.38/master
In commit c628c2296392ed3bf2cb8d8470668e64fe53389f (elf: Remove
ldconfig kernel version check), the layout of auxcache entries
changed because the osversion field was removed from
struct aux_cache_file_entry. However, AUX_CACHEMAGIC was not
changed, so existing files are still used, potentially leading
to unintended ldconfig behavior. This commit changes AUX_CACHEMAGIC,
so that the file is regenerated.
Reported-by: DJ Delorie <dj@redhat.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 0a536f6e2f76e3ef581b3fd9af1e5cf4ddc7a5a2)
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | elf/cache.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -59,6 +59,7 @@ The following bugs are resolved with this release: [31968] mremap implementation in C does not handle arguments correctly [32052] Name space violation in fortify wrappers [32137] libio: Attempt wide backup free only for non-legacy code + [32231] elf: Change ldconfig auxcache magic number Version 2.38 diff --git a/elf/cache.c b/elf/cache.c index 8149f88..5de69ec 100644 --- a/elf/cache.c +++ b/elf/cache.c @@ -823,7 +823,7 @@ struct aux_cache_entry struct aux_cache_entry *next; }; -#define AUX_CACHEMAGIC "glibc-ld.so.auxcache-1.0" +#define AUX_CACHEMAGIC "glibc-ld.so.auxcache-2.0" struct aux_cache_file_entry { |