background: Fix comparisons of gradients

This commit is contained in:
Bastien Nocera 2011-02-14 19:49:07 +00:00
parent 8be746af8d
commit e4efd61cfe

View file

@ -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;