svn commit: r239435 - stable/9/libexec/rtld-elf

Alexander Kabaev kan at FreeBSD.org
Mon Aug 20 15:08:22 UTC 2012


Author: kan
Date: Mon Aug 20 15:08:22 2012
New Revision: 239435
URL: http://svn.freebsd.org/changeset/base/239435

Log:
  MFC r239019: Parse notes only after object structure had been allocated.

Modified:
  stable/9/libexec/rtld-elf/map_object.c
Directory Properties:
  stable/9/libexec/rtld-elf/   (props changed)

Modified: stable/9/libexec/rtld-elf/map_object.c
==============================================================================
--- stable/9/libexec/rtld-elf/map_object.c	Mon Aug 20 15:05:29 2012	(r239434)
+++ stable/9/libexec/rtld-elf/map_object.c	Mon Aug 20 15:08:22 2012	(r239435)
@@ -153,7 +153,6 @@ map_object(int fd, const char *path, con
 		break;
 	    note_start = (Elf_Addr)(char *)hdr + phdr->p_offset;
 	    note_end = note_start + phdr->p_filesz;
-	    digest_notes(obj, note_start, note_end);
 	    break;
 	}
 
@@ -291,7 +290,8 @@ map_object(int fd, const char *path, con
     obj->stack_flags = stack_flags;
     obj->relro_page = obj->relocbase + trunc_page(relro_page);
     obj->relro_size = round_page(relro_size);
-
+    if (note_start < note_end)
+	digest_notes(obj, note_start, note_end);
     munmap(hdr, PAGE_SIZE);
     return (obj);
 


More information about the svn-src-stable mailing list