[Libreoffice-commits] core.git: vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Apr 16 18:30:37 UTC 2020


 vcl/source/gdi/impgraph.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 499dbbeeca3745217e3ee5e7d70ead496a583a8c
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Apr 16 17:08:07 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Apr 16 20:29:51 2020 +0200

    cid#1462265 Uncaught exception
    
    Change-Id: I4c1b8e6a13527ff3c95df8ec23c26c37c127b356
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92384
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx
index 6ea0685e4943..b5d59f29f7f6 100644
--- a/vcl/source/gdi/impgraph.cxx
+++ b/vcl/source/gdi/impgraph.cxx
@@ -61,7 +61,7 @@ struct ImpSwapFile
 {
     INetURLObject aSwapURL;
     OUString maOriginURL;
-    ~ImpSwapFile();
+    ~ImpSwapFile() COVERITY_NOEXCEPT_FALSE;
 };
 
 ImpGraphic::ImpGraphic() :
@@ -350,7 +350,7 @@ void ImpGraphic::ImplClearGraphics()
     maVectorGraphicData.reset();
 }
 
-ImpSwapFile::~ImpSwapFile()
+ImpSwapFile::~ImpSwapFile() COVERITY_NOEXCEPT_FALSE
 {
     utl::UCBContentHelper::Kill(aSwapURL.GetMainURL(INetURLObject::DecodeMechanism::NONE));
 }


More information about the Libreoffice-commits mailing list