diff options
Diffstat (limited to 'elff/elf_file.cc')
-rw-r--r-- | elff/elf_file.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/elff/elf_file.cc b/elff/elf_file.cc index 39aa371..5a6392c 100644 --- a/elff/elf_file.cc +++ b/elff/elf_file.cc @@ -35,16 +35,16 @@ static const DwarfParseContext parse_rt_context = { parse_rt_tags }; //=============================================================================
ElfFile::ElfFile()
- : sec_table_(NULL),
+ : fixed_base_address_(0),
+ elf_handle_((MapFile*)-1),
elf_file_path_(NULL),
+ allocator_(NULL),
+ sec_table_(NULL),
sec_count_(0),
- cu_count_(0),
+ sec_entry_size_(0),
last_cu_(NULL),
- allocator_(NULL),
- fixed_base_address_(0),
- is_exec_(0),
- elf_handle_((MapFile*)-1),
- sec_entry_size_(0) {
+ cu_count_(0),
+ is_exec_(0) {
}
ElfFile::~ElfFile() {
|