mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
(struct filebuf): For buf element to have the alignment of ElfXX_Ehdr since this is what will be stored in it.
This commit is contained in:
@ -109,7 +109,7 @@ ELF_PREFERRED_ADDRESS_DATA;
|
|||||||
struct filebuf
|
struct filebuf
|
||||||
{
|
{
|
||||||
ssize_t len;
|
ssize_t len;
|
||||||
char buf[1024];
|
char buf[1024] __attribute__ ((aligned (__alignof (ElfW(Ehdr)))));
|
||||||
};
|
};
|
||||||
|
|
||||||
/* This is the decomposed LD_LIBRARY_PATH search path. */
|
/* This is the decomposed LD_LIBRARY_PATH search path. */
|
||||||
|
Reference in New Issue
Block a user