Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
epggrab: fix assert crash caused by rewrite
  • Loading branch information
perexg committed Sep 18, 2015
1 parent febb1c1 commit 1e1c8f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/epggrab/module.c
Expand Up @@ -98,6 +98,11 @@ static const void *epggrab_mod_class_type_get(void *o)
return &s;
}

static int epggrab_mod_class_type_set(void *o, const void *v)
{
return 0;
}

const idclass_t epggrab_mod_class = {
.ic_class = "epggrab_mod",
.ic_caption = N_("EPG Grabber"),
Expand Down Expand Up @@ -126,6 +131,7 @@ const idclass_t epggrab_mod_class = {
.id = "type",
.name = N_("Type"),
.get = epggrab_mod_class_type_get,
.set = epggrab_mod_class_type_set,
.opts = PO_RDONLY | PO_LOCALE,
.group = 1,
},
Expand Down

0 comments on commit 1e1c8f1

Please sign in to comment.