diff options
author | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-08 08:49:13 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@igalia.com> | 2012-03-11 03:03:48 +0800 |
commit | 804bd8348aa940fc82f8400e643639e9782ff35c (patch) | |
tree | df591c43ab0877a66b209a0df37f82e681a34d96 /src/ephy-history-window.c | |
parent | dec614c2481632ceeaf7966eb88412942e6a8a67 (diff) | |
download | gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar.gz gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar.bz2 gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar.lz gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar.xz gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.tar.zst gsoc2013-epiphany-804bd8348aa940fc82f8400e643639e9782ff35c.zip |
ephy-history-window: init hosts to NULL
https://bugzilla.gnome.org/show_bug.cgi?id=671613
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r-- | src/ephy-history-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 9b254855e..228c61eb0 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -1030,7 +1030,7 @@ on_get_hosts_cb (gpointer service, { EphyHistoryWindow *window = EPHY_HISTORY_WINDOW (user_data); EphyHistoryHost *selected_host; - GList *hosts; + GList *hosts = NULL; if (success != TRUE) goto out; |