From 54762245feee35ce6885f7443da8f8443fccd5b5 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Wed, 26 May 2021 20:39:41 +0200 Subject: [PATCH] allow 0-size message It likely means the input is broken, but there is no need to reject it. Let's just produce a dummy, empty message. Change-Id: I03a1e9827f21f6a0ce69d7e16dfcf2e9a0f2d44f --- src/lib/IWAMessage.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/IWAMessage.cpp b/src/lib/IWAMessage.cpp index c01b1b6..9456444 100644 --- a/src/lib/IWAMessage.cpp +++ b/src/lib/IWAMessage.cpp @@ -42,7 +42,8 @@ IWAMessage::IWAMessage(const RVNGInputStreamPtr_t &input, unsigned long length) : m_input(input) , m_fields() { - assert(length > 0); + if (length == 0) + return; parse(length); } -- 2.31.1 on value='aoo/trunk'>aoo/trunk LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/CppunitTest_sc_tableconditionalentryobj.mk
AgeCommit message (Expand)Author
2019-10-04add gbuild function for a common PCH and use it in sc/ and sax/Luboš Luňák
2018-07-06Remove obsolete (cargo-cult copied) dependenciesJens Carl
2018-03-11extract common components to one place for sc unoapi testsTomaž Vajngerl
2018-03-11Move (and rename) graphic stuff from svtools to vclTomaž Vajngerl
2017-11-03tdf#45904 Move Java _XSheetCondition tests to C++Jens Carl