From 0b6ae07240e79738d88fe61676f814044cf71c7c Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 10 Jan 2022 09:49:50 +0000 Subject: ofz: Use-of-unintialized-value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6c9a1a22240defbc8d9fa262ad087770445ffc4a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128210 Tested-by: Jenkins Reviewed-by: Caolán McNamara (cherry picked from commit b4c56c0fd917623bbc0982eb53276e6ca64e7f42) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128334 Reviewed-by: Michael Stahl --- lotuswordpro/source/filter/lwpdrawobj.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx index 04acb795e631..a12bfa270a40 100644 --- a/lotuswordpro/source/filter/lwpdrawobj.cxx +++ b/lotuswordpro/source/filter/lwpdrawobj.cxx @@ -1050,9 +1050,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() -- cgit