Kaydet (Commit) 13f26219 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#704095 Unchecked return value

Change-Id: I31bfb0b6cdcac78592759824cb74ab62d98fcc7b
üst dff10fc4
...@@ -1781,7 +1781,12 @@ void PDFWriterImpl::PDFPage::appendWaveLine( sal_Int32 nWidth, sal_Int32 nY, sal ...@@ -1781,7 +1781,12 @@ void PDFWriterImpl::PDFPage::appendWaveLine( sal_Int32 nWidth, sal_Int32 nY, sal
m_aDigest = rtl_digest_createMD5(); m_aDigest = rtl_digest_createMD5();
/* the size of the Codec default maximum */ /* the size of the Codec default maximum */
checkEncryptionBufferSize( 0x4000 ); if (!checkEncryptionBufferSize(0x4000))
{
m_aFile.close();
m_bOpen = false;
return;
}
if( xEnc.is() ) if( xEnc.is() )
prepareEncryption( xEnc ); prepareEncryption( xEnc );
......
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