update to 124.0.6367.207

This commit is contained in:
purplerain 2024-05-20 13:42:05 +00:00
parent 687f3acd55
commit fe9bc9d89b
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
958 changed files with 7372 additions and 6231 deletions

View file

@ -1,19 +1,14 @@
Index: base/debug/elf_reader.cc
--- base/debug/elf_reader.cc.orig
+++ base/debug/elf_reader.cc
@@ -78,6 +78,7 @@ size_t ReadElfBuildId(const void* elf_mapped_base,
bool found = false;
while (current_section < section_end) {
current_note = reinterpret_cast<const Nhdr*>(current_section);
+#if !BUILDFLAG(IS_BSD)
if (current_note->n_type == NT_GNU_BUILD_ID) {
StringPiece note_name(current_section + sizeof(Nhdr),
current_note->n_namesz);
@@ -87,6 +88,7 @@ size_t ReadElfBuildId(const void* elf_mapped_base,
break;
}
}
+#endif
@@ -45,6 +45,10 @@ using Xword = Elf64_Xword;
size_t section_size = bits::AlignUp(current_note->n_namesz, 4u) +
bits::AlignUp(current_note->n_descsz, 4u) +
constexpr char kGnuNoteName[] = "GNU";
+#ifndef NT_GNU_BUILD_ID
+#define NT_GNU_BUILD_ID 3
+#endif
+
// Returns a pointer to the header of the ELF binary mapped into memory, or a
// null pointer if the header is invalid. Here and below |elf_mapped_base| is a
// pointer to the start of the ELF image.