diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-07-10 10:36:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-07-11 15:05:37 +0200 |
commit | 2e7c8846f806a5f26fc4fc5a60894bfa50ddde06 (patch) | |
tree | a8dda23da5373fc6ed320f0b4a341a15ca5988c8 | |
parent | 797b921afa056d5631ed772a110c5a3e53741bfc (diff) |
cid#1487035 Uninitialized scalar field
Change-Id: I925b6efdb8d75e5960152f3758ce185aab67d206
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118704
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | oox/source/ole/oleobjecthelper.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/ole/oleobjecthelper.cxx b/oox/source/ole/oleobjecthelper.cxx index 534d8aff97ab..9cecf3d0b705 100644 --- a/oox/source/ole/oleobjecthelper.cxx +++ b/oox/source/ole/oleobjecthelper.cxx @@ -47,7 +47,8 @@ using namespace ::com::sun::star::uno; OleObjectInfo::OleObjectInfo() : mbLinked( false ), mbShowAsIcon( false ), - mbAutoUpdate( false ) + mbAutoUpdate( false ), + mbHasPicture( false ) { } |