diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-22 21:58:22 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-22 21:58:22 +0800 |
commit | b9057aea437a712ccb7865268ec833588c177a8b (patch) | |
tree | cb2cc8a38acc5403f54fda20db41b1b98436e2b7 /embed/mozilla/mozilla-embed.cpp | |
parent | ba54bad81b7e5fabde4ade81da5a4e1a7e567de4 (diff) | |
download | gsoc2013-epiphany-b9057aea437a712ccb7865268ec833588c177a8b.tar.gz gsoc2013-epiphany-b9057aea437a712ccb7865268ec833588c177a8b.tar.zst gsoc2013-epiphany-b9057aea437a712ccb7865268ec833588c177a8b.zip |
Don't use nsIURI::SetPassword, since it asserts when username is empty.
2005-08-22 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/EphyBrowser.cpp:
* embed/mozilla/mozilla-embed.cpp:
Don't use nsIURI::SetPassword, since it asserts when username
is empty. Use GetUsername, SetUserPass instead.
Diffstat (limited to 'embed/mozilla/mozilla-embed.cpp')
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index bf31d1fb6..461bbf002 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -580,7 +580,10 @@ impl_get_location (EphyEmbed *embed, rv = uri->Clone (getter_AddRefs (furi)); if (NS_FAILED (rv)) return NULL; - furi->SetPassword (nsEmbedCString()); + /* Hide password part */ + nsEmbedCString user; + furi->GetUsername (user); + furi->SetUserPass (user); nsEmbedCString url; furi->GetSpec (url); |