--- old/src/jdk.incubator.jpackage/share/native/libapplauncher/IniFile.cpp 2019-12-11 09:41:30.914933600 -0500 +++ new/src/jdk.incubator.jpackage/share/native/libapplauncher/IniFile.cpp 2019-12-11 09:41:29.752977000 -0500 @@ -111,7 +111,7 @@ TString name = keys[index]; IniSectionData *section; - if (FMap.GetValue(name, section) == true) { + if (FMap.GetValue(name, section) == true && section != NULL) { contents.push_back(_T("[") + name + _T("]")); std::list lines = section->GetLines(); contents.insert(contents.end(), lines.begin(), lines.end());