From 8003a7b117f822a03b661db86534cc6b4787475a Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 15 Jan 2023 20:13:33 +0000 Subject: cid#1412875 Uninitialized pointer field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I551a18eddb5a2f436ecb947411faef09ac74d016 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145537 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- vcl/unx/generic/gdi/cairo_xlib_cairo.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/unx/generic/gdi/cairo_xlib_cairo.cxx b/vcl/unx/generic/gdi/cairo_xlib_cairo.cxx index 9ec8167fbfdd..26d8876a8906 100644 --- a/vcl/unx/generic/gdi/cairo_xlib_cairo.cxx +++ b/vcl/unx/generic/gdi/cairo_xlib_cairo.cxx @@ -65,7 +65,8 @@ namespace cairo pDisplay(pSysDat.pDisplay), hDrawable(pSysDat.hDrawable), pVisual(pSysDat.pVisual), - nScreen(pSysDat.nScreen) + nScreen(pSysDat.nScreen), + pRenderFormat(nullptr) {} X11SysData::X11SysData( const SystemEnvData& pSysDat, const SalFrame* pReference ) : -- cgit