lotuswordpro/source/filter/lwpdrawobj.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit b4c56c0fd917623bbc0982eb53276e6ca64e7f42
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Jan 10 09:49:50 2022 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Mon Jan 10 11:56:04 2022 +0100

    ofz: Use-of-unintialized-value
    
    Change-Id: I6c9a1a22240defbc8d9fa262ad087770445ffc4a
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128210
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx 
b/lotuswordpro/source/filter/lwpdrawobj.cxx
index 4811c8b8d9cc..877cf4623872 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -1049,9 +1049,9 @@ void LwpDrawTextBox::Read()
     sal_Int16 TextLength = m_aObjHeader.nRecLen - 71;
     if (TextLength < 0)
         throw BadRead();
-    m_aTextRec.pTextString = new sal_uInt8 [TextLength];
-
-    m_pStream->ReadBytes(m_aTextRec.pTextString, TextLength);
+    m_aTextRec.pTextString = new sal_uInt8[TextLength];
+    if (m_pStream->ReadBytes(m_aTextRec.pTextString, TextLength) != 
o3tl::make_unsigned(TextLength))
+        throw BadRead();
 }
 
 OUString LwpDrawTextBox::RegisterStyle()

Reply via email to