Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvr_db: coverity fixes
  • Loading branch information
perexg committed Oct 3, 2014
1 parent f7336d2 commit f78bd7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvr/dvr_db.c
Expand Up @@ -1444,7 +1444,7 @@ dvr_entry_class_disp_title_set(void *o, const void *v)
v = "UnknownTitle";
if (de->de_title)
s = lang_str_get(de->de_title, NULL);
if (strcmp(s, v ?: "")) {
if (strcmp(s, v)) {
lang_str_destroy(de->de_title);
de->de_title = lang_str_create();
if (v)
Expand Down

0 comments on commit f78bd7a

Please sign in to comment.