src/hotspot/share/utilities/elfStringTable.cpp
changeset 51334 cc2c79d22508
parent 48975 2c35fd3c5789
--- a/src/hotspot/share/utilities/elfStringTable.cpp	Wed Aug 08 15:31:06 2018 +0200
+++ b/src/hotspot/share/utilities/elfStringTable.cpp	Wed Aug 08 15:31:07 2018 +0200
@@ -34,7 +34,7 @@
 // We will try to load whole string table into memory if we can.
 // Otherwise, fallback to more expensive file operation.
 ElfStringTable::ElfStringTable(FILE* const file, Elf_Shdr& shdr, int index) :
-  _section(file, shdr), _index(index), _fd(file), _next(NULL) {
+  _next(NULL), _index(index), _section(file, shdr), _fd(file) {
   _status = _section.status();
 }