kbrown / rpms / libreoffice

Forked from rpms/libreoffice 2 years ago
Clone

Blame SOURCES/0038-CID-1306215-Uninitialized-members.patch

135360
From 07cdc487ae95079d11ce314d1416a028f585e5c5 Mon Sep 17 00:00:00 2001
135360
From: Miklos Vajna <vmiklos@collabora.co.uk>
135360
Date: Fri, 12 Jun 2015 11:23:37 +0200
135360
Subject: [PATCH 038/398] CID#1306215 Uninitialized members
135360
135360
Change-Id: Ib1ff285d1f8180ecb0be8448ac4c2d1878dff274
135360
(cherry picked from commit 90f9e09a176d9c9df3d79a057a27c34d441608df)
135360
---
135360
 libreofficekit/source/gtk/tilebuffer.hxx | 2 +-
135360
 1 file changed, 1 insertion(+), 1 deletion(-)
135360
135360
diff --git a/libreofficekit/source/gtk/tilebuffer.hxx b/libreofficekit/source/gtk/tilebuffer.hxx
135360
index 42c6d35b112b..6e6c0beb48f3 100644
135360
--- a/libreofficekit/source/gtk/tilebuffer.hxx
135360
+++ b/libreofficekit/source/gtk/tilebuffer.hxx
135360
@@ -51,7 +51,7 @@ float twipToPixel(float fInput, float zoom);
135360
 class Tile
135360
 {
135360
  public:
135360
-    Tile() : valid(false) {}
135360
+    Tile() : valid(false), m_pBuffer(0) {}
135360
     ~Tile() { }
135360
 
135360
     /**
135360
-- 
135360
2.12.0
135360