Index: xfa/fxfa/parser/xfa_localemgr.cpp |
diff --git a/xfa/fxfa/parser/xfa_localemgr.cpp b/xfa/fxfa/parser/xfa_localemgr.cpp |
index b7f0fbea597e20b42be39a9f2572571bf00d644e..74565a7ea0afa12f26aa0ab01bb4706840025be1 100644 |
--- a/xfa/fxfa/parser/xfa_localemgr.cpp |
+++ b/xfa/fxfa/parser/xfa_localemgr.cpp |
@@ -1048,7 +1048,7 @@ static std::unique_ptr<IFX_Locale> XFA_GetLocaleFromBuffer(const uint8_t* pBuf, |
std::unique_ptr<CXML_Element> pLocale; |
uint8_t* pOut = nullptr; |
uint32_t dwSize; |
- pCodecMgr->GetFlateModule()->FlateOrLZWDecode(FALSE, pBuf, nBufLen, TRUE, 0, |
+ pCodecMgr->GetFlateModule()->FlateOrLZWDecode(false, pBuf, nBufLen, true, 0, |
0, 0, 0, 0, pOut, dwSize); |
if (pOut) { |
pLocale.reset(CXML_Element::Parse(pOut, dwSize)); |
@@ -1237,7 +1237,7 @@ CFX_WideStringC CXFA_LocaleMgr::GetConfigLocaleName(CXFA_Node* pConfig) { |
pCommon ? pCommon->GetFirstChildByClass(XFA_Element::Locale) |
: nullptr; |
if (pLocale) { |
- pLocale->TryCData(XFA_ATTRIBUTE_Value, m_wsConfigLocale, FALSE); |
+ pLocale->TryCData(XFA_ATTRIBUTE_Value, m_wsConfigLocale, false); |
} |
} |
m_dwLocaleFlags |= 0x01; |