Hello,
This fdo is quite interesting, above all from
https://bugs.freedesktop.org/show_bug.cgi?id=52122#c4, because it could explain several crashes.
I started to "opengrok" for "vendorData", then I tried to follow it :
- jvmfwk/source/elements.cxx
void CNodeJavaInfo::loadFromNode(xmlDoc * pDoc, xmlNode * pJavaInfo)
line 974 else if (xmlStrcmp(cur->name, (xmlChar*) "vendorData") == 0)
which calls decodeBase16 (so I could find how to decode the 2 "vendorData" strings indicated by the reporter of the tracker)
- called from this same file
void NodeJava::load()
324 m_javaInfo->loadFromNode(docUser, cur);
- (not sure) called from this same file
MergedSettings::MergedSettings():
1146 settings.load();
or
1155 sharedSettings.load();
then I don't know except it seems to be called from jvmfwk/source/framework.cxx
Any idea how to keep ?
Julien