diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2003-08-08 Marco Pesenti Gritti <marco@it.gnome.org> + + * embed/mozilla/mozilla-embed.cpp: + + When the embed is not initialized return about:blank + as address. + 2003-08-07 Marco Pesenti Gritti <marco@it.gnome.org> * src/ephy-tab.c: (build_load_percent): diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index f0d85ba59..63c696d80 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -732,7 +732,7 @@ impl_get_location (EphyEmbed *embed, * in fact the wrapper is initialized on net start */ if (!wrapper) { - *location = NULL; + *location = g_strdup ("about:blank"); return G_FAILED; } |