about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-28 04:19:14 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-28 04:19:14 +0000
commit7231f6f94092b683c884d8348b056a57f9755c98 (patch)
tree099761a1a9f5db34e33b7a8549d5cfedb961b5f4 /elf
parentf116c77f7bcfd5c805ea165e414041974549b481 (diff)
downloadglibc-7231f6f94092b683c884d8348b056a57f9755c98.tar.gz
glibc-7231f6f94092b683c884d8348b056a57f9755c98.tar.xz
glibc-7231f6f94092b683c884d8348b056a57f9755c98.zip
Update.
2000-12-27  Ben Collins  <bcollins@debian.org>

	* elf/dl-open.c (_dl_open): Correctly set the new objname pointer
	when reallocating the error strings.
	Reported by Kalle Olavi Niemitalo <kon@iki.fi>
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-open.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c
index 90355796ba..931e22625c 100644
--- a/elf/dl-open.c
+++ b/elf/dl-open.c
@@ -403,9 +403,9 @@ _dl_open (const char *file, int mode, const void *caller)
       len_errstring = strlen (errstring) + 1;
       if (objname == errstring + len_errstring)
 	{
-	  len_errstring += strlen (objname) + 1;
-	  local_errstring = alloca (len_errstring);
-	  memcpy (local_errstring, errstring, len_errstring);
+	  size_t total_len = len_errstring + strlen (objname) + 1;
+	  local_errstring = alloca (total_len);
+	  memcpy (local_errstring, errstring, total_len);
 	  objname = local_errstring + len_errstring;
 	}
       else