diff options
author | Tony Puccinelli | 2010-08-07 22:27:23 +0000 |
---|---|---|
committer | Tony Puccinelli | 2010-08-07 22:27:23 +0000 |
commit | de1e941370b7e2fad704e072eccfb79b3db1399b (patch) | |
tree | de9301877a963f4688dd919d65cc488510b76ba5 /backends/plugins/elf-loader.h | |
parent | 68b986545a7ce24e3c0d2a8635d538941b67729f (diff) | |
download | scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.tar.gz scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.tar.bz2 scummvm-rg350-de1e941370b7e2fad704e072eccfb79b3db1399b.zip |
refined constructors, removed destructors, got rid of unneccessary method duplication in DLObject and its subtypes
svn-id: r51845
Diffstat (limited to 'backends/plugins/elf-loader.h')
-rw-r--r-- | backends/plugins/elf-loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/plugins/elf-loader.h b/backends/plugins/elf-loader.h index 56a9fa3767..1d30aa0c3b 100644 --- a/backends/plugins/elf-loader.h +++ b/backends/plugins/elf-loader.h @@ -60,6 +60,8 @@ public: void *symbol(const char *name); void discard_symtab(); + DLObject() : _segment(NULL), _symtab(NULL), _strtab(NULL), _symbol_cnt(0), + _symtab_sect(-1), _dtors_start(NULL), _dtors_end(NULL), _segmentSize(0) {} }; #endif /* ELF_LOADER_H */ |