subchannel_select: fix possible format-truncation error

output between 5 and 152 bytes into a destination of size 100


Origin commit data
------------------
Commit: e02f5c0b41
Author: Thilo Graf <dbt@novatux.de>
Date: 2020-01-06 (Mon, 06 Jan 2020)
This commit is contained in:
2020-01-06 22:22:41 +01:00
committed by vanhofen
parent cfaab3d4ad
commit 98fd40ec4e

View File

@@ -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);