Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Compare value, not the address of variable
  • Loading branch information
UllrichKossow authored and perexg committed Aug 18, 2014
1 parent a208063 commit 60ab48a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dvr/dvr_autorec.c
Expand Up @@ -85,8 +85,8 @@ autorec_cmp(dvr_autorec_entry_t *dae, epg_broadcast_t *e)
dae->dae_title[0] == '\0') &&
dae->dae_brand == NULL &&
dae->dae_season == NULL &&
&dae->dae_minduration == NULL &&
&dae->dae_maxduration == NULL &&
dae->dae_minduration == 0 &&
dae->dae_maxduration == 0 &&
dae->dae_serieslink == NULL)
return 0; // Avoid super wildcard match

Expand Down

0 comments on commit 60ab48a

Please sign in to comment.