diff options
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index 270fd6cb3..d4256ff89 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1139,7 +1139,7 @@ ephy_tab_set_title (EphyTab *tab, const char *new_title) GNOME_VFS_URI_HIDE_FRAGMENT_IDENTIFIER); gnome_vfs_uri_unref (uri); } - else if (address != NULL) + else if (address != NULL && strncmp (address, "about:blank", 11) != 0) { title = g_strdup (address); } @@ -1150,7 +1150,6 @@ ephy_tab_set_title (EphyTab *tab, const char *new_title) title = g_strdup (_("Blank page")); } - g_free (address); } else |