Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
DVR: Fix dvr_config_find_by_name_default()
  • Loading branch information
perexg committed Sep 16, 2014
1 parent a79cdee commit 175fee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -2004,7 +2004,7 @@ dvr_config_find_by_name_default(const char *name)
if (dvrdefaultconfig && (name == NULL || *name == '\0'))
return dvrdefaultconfig;

cfg = name ? dvr_config_find_by_name(name) : NULL;
cfg = dvr_config_find_by_name(name);

if (cfg == NULL) {
if (name && *name)
Expand Down

0 comments on commit 175fee8

Please sign in to comment.