Make coverity happy

This commit is contained in:
Davide Andreoli 2019-05-12 21:52:13 +02:00
parent 6db7ce49e5
commit 65bd9f748b
1 changed files with 5 additions and 2 deletions

View File

@ -184,6 +184,9 @@ _places_volume_sort_cb(const void *d1, const void *d2)
const Volume *v1 = d1;
const Volume *v2 = d2;
if(!v1) return(1);
if(!v2) return(-1);
// removable after interal
if (v1->removable && !v2->removable) return(1);
if (v2->removable && !v1->removable) return(-1);
@ -191,8 +194,8 @@ _places_volume_sort_cb(const void *d1, const void *d2)
if (v1->mount_point && !strcmp(v1->mount_point, "/")) return -1;
if (v2->mount_point && !strcmp(v2->mount_point, "/")) return 1;
// order by label
if(!v1 || !v1->label) return(1);
if(!v2 || !v2->label) return(-1);
if(!v1->label) return(1);
if(!v2->label) return(-1);
return strcmp(v1->label, v2->label);
}