summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-08-01 09:23:30 +0200
committerXan Lopez <xan@igalia.com>2012-08-07 11:08:38 +0200
commitce12f3f3bbd8f27af73fb08dfead85cf86657a79 (patch)
treee333ccd0cd6a489eeee1cbfc5aeb7b1a60b2ee81
parentbb7adc4258b4d772e3474f7d91bedf981b025fcd (diff)
downloadepiphany-ce12f3f3bbd8f27af73fb08dfead85cf86657a79.tar.gz
ephy-history-service: prevent double call to execute_quit()
execute_quit() is called already when the QUIT message is received, there is no need to call it after the thread loop quits. https://bugzilla.gnome.org/show_bug.cgi?id=680529
-rw-r--r--lib/history/ephy-history-service.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c
index 7d5a49e9a..4a9f6a0de 100644
--- a/lib/history/ephy-history-service.c
+++ b/lib/history/ephy-history-service.c
@@ -382,7 +382,6 @@ run_history_service_thread (EphyHistoryService *self)
} while (!ephy_history_service_is_scheduled_to_quit (self));
ephy_history_service_close_database_connections (self);
- ephy_history_service_execute_quit (self, NULL, NULL);
return NULL;
}