Fix crash if removing DVR entry when in DVR_MISSED_TIME status
Patch by sbi Ticket #306
This commit is contained in:
parent
b458766831
commit
7d0d950281
1 changed files with 4 additions and 0 deletions
|
@ -679,6 +679,10 @@ dvr_entry_cancel(dvr_entry_t *de)
|
|||
dvr_entry_remove(de);
|
||||
return NULL;
|
||||
|
||||
case DVR_MISSED_TIME:
|
||||
dvr_entry_remove(de);
|
||||
return NULL;
|
||||
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue