mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
fix argument-checking - sending a null server is ok (we'll just give a null identity back)
however, use NS_ENSURE_ARG_POINTER() for aResult! r=sspitzer
This commit is contained in:
parent
b25f7c095b
commit
42c8d9f22c
@ -1209,9 +1209,14 @@ NS_IMETHODIMP
|
||||
nsMsgAccountManager::FindAccountForServer(nsIMsgIncomingServer *server,
|
||||
nsIMsgAccount **aResult)
|
||||
{
|
||||
NS_ENSURE_ARG_POINTER(server);
|
||||
NS_ENSURE_ARG_POINTER(aResult);
|
||||
|
||||
if (!server) {
|
||||
(*aResult) = nsnull;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
nsresult rv;
|
||||
*aResult = nsnull;
|
||||
|
||||
nsXPIDLCString key;
|
||||
rv = server->GetKey(getter_Copies(key));
|
||||
|
Loading…
x
Reference in New Issue
Block a user