aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorGustavo Noronha Silva <gns@gnome.org>2009-09-05 01:57:19 +0800
committerGustavo Noronha Silva <gns@gnome.org>2009-09-05 01:57:19 +0800
commit70dc740953c8213b73cd7c089c7afdc9a97f47a0 (patch)
tree97229c9349515a027c6aba0b06912452a14b93af /embed
parentf26d41a2e03e802f16c0f2693dad67f22b8b1edb (diff)
downloadgsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar.gz
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar.bz2
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar.lz
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar.xz
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.tar.zst
gsoc2013-epiphany-70dc740953c8213b73cd7c089c7afdc9a97f47a0.zip
Making gcc shut up, by initializing loading_uri
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-embed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c
index 1d5daa288..c10e4d315 100644
--- a/embed/ephy-embed.c
+++ b/embed/ephy-embed.c
@@ -240,7 +240,7 @@ load_status_changed_cb (WebKitWebView *view,
ephy_web_view_set_security_level (EPHY_WEB_VIEW (view), security_level);
} else if (status == WEBKIT_LOAD_PROVISIONAL || status == WEBKIT_LOAD_FINISHED) {
EphyWebViewNetState estate = EPHY_WEB_VIEW_STATE_UNKNOWN;
- const char *loading_uri;
+ const char *loading_uri = NULL;
if (status == WEBKIT_LOAD_PROVISIONAL) {
WebKitWebFrame *frame;