From 05972099fe2cc56981767bed6f8f957f3c42d3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 16 Aug 2019 17:24:04 +0200 Subject: [PATCH] [apps/shared] Fix char array initialization --- apps/shared/xy_banner_view.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/shared/xy_banner_view.cpp b/apps/shared/xy_banner_view.cpp index 2956553b7..e2535afe7 100644 --- a/apps/shared/xy_banner_view.cpp +++ b/apps/shared/xy_banner_view.cpp @@ -23,6 +23,7 @@ XYBannerView::XYBannerView( ), m_ordinateView(Font(), 0.5f, 0.5f, TextColor(), BackgroundColor()) { + m_textBody[0] = 0; } View * XYBannerView::subviewAtIndex(int index) {