We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbd0880 commit 8bbf302Copy full SHA for 8bbf302
mythtv/programs/mythbackend/services/dvr.cpp
@@ -444,9 +444,6 @@ int Dvr::AddRecordSchedule ( int nChanId,
444
RecordingInfo *info = new RecordingInfo(nChanId, dStartTime, false);
445
RecordingRule *rule = info->GetRecordingRule();
446
447
- delete info;
448
- info = NULL;
449
-
450
if (sType.isEmpty())
451
sType = "single";
452
@@ -459,6 +456,7 @@ int Dvr::AddRecordSchedule ( int nChanId,
459
456
if (sDupIn.isEmpty())
460
457
sDupIn = "all";
461
458
+ rule->m_title = info->GetTitle();
462
rule->m_type = recTypeFromString(sType);
463
rule->m_searchType = searchTypeFromString(sSearchType);
464
rule->m_dupMethod = dupMethodFromString(sDupMethod);
0 commit comments