We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a0b60 commit 412fa2aCopy full SHA for 412fa2a
1 file changed
WinArk/TreeImportExport.cpp
@@ -88,6 +88,8 @@ void TreeImportExport::ParseAllElementModules(tinyxml2::XMLElement* pTargetEleme
88
for (tinyxml2::XMLElement* pModuleElement = pTargetElement->FirstChildElement();
89
pModuleElement; pModuleElement = pModuleElement->NextSiblingElement()) {
90
std::string moduleName = pModuleElement->Attribute("module_name");
91
+ std::wstring wname = Helpers::StringToWstring(moduleName);
92
+ wcscpy_s(importModuleThunk.m_ModuleName, wname.c_str());
93
if (!moduleName.empty()) {
94
importModuleThunk.m_FirstThunk = ConvertStringToDwordPtr(pModuleElement->Attribute("first_thunk_rva"));
95
importModuleThunk.m_ThunkMap.clear();
0 commit comments