Fix crash if removing DVR entry when in DVR_MISSED_TIME status

Patch by sbi

Ticket #306
This commit is contained in:
Andreas Öman 2010-10-18 21:15:26 +00:00
parent b458766831
commit 7d0d950281

View file

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