Fix bug 57435

This commit is contained in:
Oleg Korshul
2022-07-28 17:38:03 +03:00
parent 9fbda8fb64
commit 6a099ce6d4

View File

@ -234,7 +234,7 @@ namespace PdfReader
m_pInternal->m_pFontList->Clear();
return (errNone == m_eError);
return true;
}
bool CPdfReader::LoadFromMemory(BYTE* data, DWORD length, const std::wstring& options,
const std::wstring& owner_password, const std::wstring& user_password)
@ -276,7 +276,7 @@ namespace PdfReader
m_pInternal->m_pFontList->Clear();
return (errNone == m_eError);
return true;
}
void CPdfReader::Close()
{