From 839d8a9d9c16a89e2ba0fa40b7a13bc9ad280326 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 6 Jan 2020 16:57:30 +0100 Subject: [PATCH] subchannel_select: fix possible format-truncation error output between 5 and 152 bytes into a destination of size 100 --- src/gui/subchannel_select.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/subchannel_select.cpp b/src/gui/subchannel_select.cpp index 49e2dc06d..a091f3a33 100644 --- a/src/gui/subchannel_select.cpp +++ b/src/gui/subchannel_select.cpp @@ -75,7 +75,7 @@ int CSubChannelSelectMenu::getNVODMenu(CMenuWidget* menu) if ( !g_RemoteControl->are_subchannels ) { char nvod_time_a[50], nvod_time_e[50], nvod_time_x[50]; - char nvod_s[100]; + char nvod_s[152]; struct tm *tmZeit; tmZeit= localtime(&e->startzeit);