background: Fix comparisons of gradients
This commit is contained in:
parent
8be746af8d
commit
e4efd61cfe
1 changed files with 4 additions and 0 deletions
|
@ -857,6 +857,10 @@ files_equal (const char *a,
|
|||
GFile *file1, *file2;
|
||||
gboolean retval;
|
||||
|
||||
if (a == NULL &&
|
||||
b == NULL)
|
||||
return TRUE;
|
||||
|
||||
if (a == NULL ||
|
||||
b == NULL)
|
||||
return FALSE;
|
||||
|
|
Loading…
Add table
Reference in a new issue