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;
|
GFile *file1, *file2;
|
||||||
gboolean retval;
|
gboolean retval;
|
||||||
|
|
||||||
|
if (a == NULL &&
|
||||||
|
b == NULL)
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
if (a == NULL ||
|
if (a == NULL ||
|
||||||
b == NULL)
|
b == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue