瀏覽代碼

Replace overflowing cast in src/elf_sections.rs (#13)

When using a higher half kernel the cast to u32 will tuncate the
section address which will return an incorrect elf section reference
to the caller. This is fixed by casting instead to a u64.
Calvin Lee 8 年之前
父節點
當前提交
bd5104f57a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/elf_sections.rs

+ 1 - 1
src/elf_sections.rs

@@ -34,7 +34,7 @@ impl Iterator for ElfSectionIter {
             None
         } else {
             let section = self.current_section;
-            let next_section_addr = (self.current_section as *const _ as u32) + self.entry_size;
+            let next_section_addr = (self.current_section as *const _ as u64) + self.entry_size as u64;
             self.current_section = unsafe{ &*(next_section_addr as *const ElfSection) };
             self.remaining_sections -= 1;
             if section.typ == ElfSectionType::Unused as u32 {