summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-03 07:07:44 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-03 07:07:44 +0000
commit7d9952c196a67b72d616266df22af58297769df4 (patch)
tree2e48701c902e790f4f8928eb406c81b43ab32f0b
parent885bafa14aaf7509f6cfc824d5b6c924c2f7a50f (diff)
(struct filebuf): Reduce buf array to 512 bytes.
-rw-r--r--elf/dl-load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 9856294c67..71a2ded832 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -1,5 +1,5 @@
/* Map in a shared object's segments from the file.
- Copyright (C) 1995,96,97,98,99,2000,2001,2002 Free Software Foundation, Inc.
+ Copyright (C) 1995-2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -109,7 +109,7 @@ ELF_PREFERRED_ADDRESS_DATA;
struct filebuf
{
ssize_t len;
- char buf[1024] __attribute__ ((aligned (__alignof (ElfW(Ehdr)))));
+ char buf[512] __attribute__ ((aligned (__alignof (ElfW(Ehdr)))));
};
/* This is the decomposed LD_LIBRARY_PATH search path. */