[Libreoffice-commits] core.git: vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Thu Jul 9 10:03:20 UTC 2020
vcl/source/filter/ipdf/pdfdocument.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 4cd79ec107b95ffba8f8455e07f824782eab1e34
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 9 09:40:50 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jul 9 12:02:37 2020 +0200
cid#1465239 silence Explicit null deferenced
Change-Id: I35135f6522ea64d0a8d7063949cd006278ec6080
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98404
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/filter/ipdf/pdfdocument.cxx b/vcl/source/filter/ipdf/pdfdocument.cxx
index 541ec2b9a738..04c43b564b39 100644
--- a/vcl/source/filter/ipdf/pdfdocument.cxx
+++ b/vcl/source/filter/ipdf/pdfdocument.cxx
@@ -356,6 +356,7 @@ sal_Int32 PDFDocument::WriteAppearanceObject(tools::Rectangle& rSignatureRectang
PDFObjectCopier aCopier(*this);
if (!aContentStreams.empty())
{
+ assert(pPage && "aContentStreams is only filled if there was a pPage");
OStringBuffer aBuffer;
aCopier.copyPageResources(pPage, aBuffer);
aEditBuffer.WriteOString(aBuffer.makeStringAndClear());
More information about the Libreoffice-commits
mailing list