diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-21 09:11:16 +0000 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-11 10:12:59 +0000 |
commit | d753e9e41283ca1e0d77001ec1174426451dd7fe (patch) | |
tree | baeb08152e7f8f7fbaabf20d6a93939d2e870c99 /libreofficekit | |
parent | af32996eb55008b9787516a280a237b61a05ca05 (diff) |
coverity#1315075 Uninitialized scalar field
Change-Id: I003839589354f02f8064b6a6af6174d2793b9b3a
(cherry picked from commit 92305c3c41d120b868e0821221a583697868ad6d)
Reviewed-on: https://gerrit.libreoffice.org/21271
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'libreofficekit')
-rw-r--r-- | libreofficekit/source/gtk/tilebuffer.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libreofficekit/source/gtk/tilebuffer.hxx b/libreofficekit/source/gtk/tilebuffer.hxx index 96100d7ece3a..cdd3e7051058 100644 --- a/libreofficekit/source/gtk/tilebuffer.hxx +++ b/libreofficekit/source/gtk/tilebuffer.hxx @@ -267,6 +267,10 @@ struct LOEvent , m_nSetGraphicSelectionType(0) , m_nSetGraphicSelectionX(0) , m_nSetGraphicSelectionY(0) + , m_nTilePixelWidth(0) + , m_nTilePixelHeight(0) + , m_nTileTwipWidth(0) + , m_nTileTwipHeight(0) { } |