explictly call .get(). no bug. r/sr=bienvenu

This commit is contained in:
sspitzer%netscape.com 2002-04-16 06:59:14 +00:00
parent 42eaaed438
commit 7b5c4d7939

View File

@ -1333,7 +1333,7 @@ nsMsgAccountManagerDataSource::IsIncomingServerForFakeAccount(nsIMsgIncomingServ
rv = aServer->GetHostName(getter_Copies(hostname));
NS_ENSURE_SUCCESS(rv,rv);
*aResult = (strcmp(hostname.get(), fakeAccountHostName) == 0);
*aResult = (strcmp(hostname.get(), fakeAccountHostName.get()) == 0);
return NS_OK;
}