From 32a21498b10cfcf3b6a26f1d656b69a3d60f5b54 Mon Sep 17 00:00:00 2001 From: "gavin@gavinsharp.com" Date: Wed, 16 May 2007 03:42:41 -0700 Subject: [PATCH] bustage fix #2 --- browser/components/migration/src/nsIEProfileMigrator.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/browser/components/migration/src/nsIEProfileMigrator.cpp b/browser/components/migration/src/nsIEProfileMigrator.cpp index b9b93f6aa49..538096c2ce8 100644 --- a/browser/components/migration/src/nsIEProfileMigrator.cpp +++ b/browser/components/migration/src/nsIEProfileMigrator.cpp @@ -1031,9 +1031,10 @@ nsIEProfileMigrator::EnumerateUsernames(const nsAString& aKey, PRUnichar* aData, nsresult rv; nsCOMPtr aLogin (do_CreateInstance(NS_LOGININFO_CONTRACTID, &rv)); - NS_ENSURE_SUCCESS(rv, rv); + NS_ENSURE_SUCCESS(rv, /* */); - aLogin->Init(realm, EmptyString(), nsnull, usernameStr, passStr, aKey, EmptyString()); + // XXX Init() needs to treat EmptyString()s the same as void strings, disable for now + //aLogin->Init(realm, EmptyString(), nsnull, usernameStr, passStr, aKey, EmptyString()); pwmgr->AddLogin(aLogin); }