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