mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
Fix string truncation warning
This commit is contained in:
@@ -1685,7 +1685,8 @@ int CTimerList::modifyTimer()
|
||||
if (!strlen(timer->recordingDir))
|
||||
strncpy(timer->recordingDir, g_settings.network_nfs_recordingdir.c_str(), sizeof(timer->recordingDir) - 1);
|
||||
timer_recordingDir = timer->recordingDir;
|
||||
strncpy(t_old.recordingDir, timer->recordingDir, sizeof(t_old.recordingDir) - 1);
|
||||
static_assert(sizeof(t_old.recordingDir) >= sizeof(timer->recordingDir));
|
||||
memcpy(t_old.recordingDir, timer->recordingDir, strlen(timer->recordingDir) + 1);
|
||||
|
||||
bool recDirEnabled = (g_settings.recording_type == CNeutrinoApp::RECORDING_FILE);
|
||||
CMenuForwarder *m6 = new CMenuForwarder(LOCALE_TIMERLIST_RECORDING_DIR, recDirEnabled, timer_recordingDir, this, "rec_dir1", CRCInput::RC_green);
|
||||
|
Reference in New Issue
Block a user