mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 17:31:20 +02:00
upnpbrowser.cpp: increase destination array to avoid possible truncation
Signed-off-by: MarkusVolk <f_l_k@t-online.de>
This commit is contained in:
@@ -1281,8 +1281,8 @@ void CUpnpBrowserGui::updateTimes(const bool force)
|
||||
}
|
||||
|
||||
//printf("updateTimes: force %d updatePlayed %d\n", force, updatePlayed);
|
||||
char play_time[8];
|
||||
snprintf(play_time, 7, "%ld:%02ld", m_time_played / 60, m_time_played % 60);
|
||||
char play_time[14];
|
||||
snprintf(play_time, sizeof(play_time), "%ld:%02ld", m_time_played / 60, m_time_played % 60);
|
||||
|
||||
if (updatePlayed){
|
||||
timebox.setText(play_time, CTextBox::CENTER);
|
||||
|
Reference in New Issue
Block a user