src/hotspot/share/utilities/elfFile.cpp
changeset 51334 cc2c79d22508
parent 48975 2c35fd3c5789
--- a/src/hotspot/share/utilities/elfFile.cpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/utilities/elfFile.cpp	Wed Aug 08 15:31:07 2018 +0200
@@ -106,9 +106,9 @@
 }
 
 ElfFile::ElfFile(const char* filepath) :
-  _string_tables(NULL), _symbol_tables(NULL), _funcDesc_table(NULL),
-  _next(NULL), _status(NullDecoder::no_error),
-  _shdr_string_table(NULL),  _file(NULL), _filepath(NULL) {
+  _next(NULL), _filepath(NULL), _file(NULL),
+  _symbol_tables(NULL), _string_tables(NULL), _shdr_string_table(NULL), _funcDesc_table(NULL),
+  _status(NullDecoder::no_error) {
   memset(&_elfHdr, 0, sizeof(_elfHdr));
 
   int len = strlen(filepath) + 1;