From 18eda73f60197b9314edeba99175b29dd38d527d Mon Sep 17 00:00:00 2001 From: Marek Roszko <mark.roszko@gmail.com> Date: Sat, 5 Feb 2022 11:36:02 -0500 Subject: [PATCH] Initialize m_face in constructor PVS V730 --- common/font/outline_font.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/font/outline_font.cpp b/common/font/outline_font.cpp index 3731a47e81..b5cee0ea39 100644 --- a/common/font/outline_font.cpp +++ b/common/font/outline_font.cpp @@ -44,6 +44,7 @@ using namespace KIFONT; FT_Library OUTLINE_FONT::m_freeType = nullptr; OUTLINE_FONT::OUTLINE_FONT() : + m_face(NULL), m_faceSize( 16 ) { if( !m_freeType )