diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-08 05:16:39 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-08 05:17:54 +0800 |
commit | a1ad3f932f94d52b496d5e717884918f03dcfd16 (patch) | |
tree | 0dd9a60a9d3bbcde8da8c03b7cd91308d15658be | |
parent | 161c78698fcce7a6cad9a562691dd51ec087265c (diff) | |
download | gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.gz gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.bz2 gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.lz gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.xz gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.tar.zst gsoc2013-epiphany-a1ad3f932f94d52b496d5e717884918f03dcfd16.zip |
ephy-history-service: execute_get_hosts() should return TRUE
If there are no hosts, that's not a failure, so return TRUE instead.
-rw-r--r-- | lib/history/ephy-history-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c index 54af56a70..ca656c793 100644 --- a/lib/history/ephy-history-service.c +++ b/lib/history/ephy-history-service.c @@ -529,7 +529,7 @@ ephy_history_service_execute_get_hosts (EphyHistoryService *self, hosts = ephy_history_service_get_all_hosts (self); *results = hosts; - return hosts != NULL; + return TRUE; } void |