diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-11-24 16:52:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-11-25 15:55:02 +0100 |
commit | d7b4408886f26c1c66d070918b4c9998a13fb8fe (patch) | |
tree | b63bd52a0e05333bf383dbd18b206da479ded7b7 /svtools | |
parent | 3511baaf9440fedbf2d0c39dfe890123f459ae97 (diff) |
coverity#1421068 Uncaught exception
see if using copy ctor rather than default dtor keeps it happy
Change-Id: I539271a569fa769a4cb33f71b8bf871dee810abf
Reviewed-on: https://gerrit.libreoffice.org/45248
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/graphic/grfmgr.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/graphic/grfmgr.cxx b/svtools/source/graphic/grfmgr.cxx index b65f092a6964..5d20b4128c6a 100644 --- a/svtools/source/graphic/grfmgr.cxx +++ b/svtools/source/graphic/grfmgr.cxx @@ -94,6 +94,7 @@ GraphicObject::GraphicObject(const Graphic& rGraphic) GraphicObject::GraphicObject(const GraphicObject& rGraphicObj) : maGraphic(rGraphicObj.GetGraphic()) , maAttr(rGraphicObj.maAttr) + , maPrefMapMode(rGraphicObj.maPrefMapMode) , maLink(rGraphicObj.maLink) , maUserData(rGraphicObj.maUserData) , mbAutoSwapped(false) |