Commit baf952a1 authored by Sergey Konovalov's avatar Sergey Konovalov

fix bug 35004

parent 0dd36c5e
......@@ -486,6 +486,9 @@ namespace NExtractTools
m_sTempDir = new std::wstring(sValue);
}
else if(_T("m_nCsvDelimiterChar") == sName)
{
std::wstring sNil;
if (!oXmlNode.GetAttributeIfExist(L"xsi:nil", sNil))
{
m_sCsvDelimiterChar = new std::wstring(L"");
}
......@@ -493,6 +496,7 @@ namespace NExtractTools
}
}
}
}
return true;
}
std::wstring getPassword() const
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment