FASTLOAD_20010703_BRANCH landing, r=dbaron, sr=shaver.

git-svn-id: svn://10.0.0.236/trunk@100030 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
brendan%mozilla.org
2001-07-31 19:05:34 +00:00
parent 7ec0196e26
commit f5bc62edea
118 changed files with 10050 additions and 3093 deletions

View File

@@ -111,11 +111,9 @@ NS_IMETHODIMP nsGenericFactory::GetClassDescription(char * *aClassDescription)
return NS_OK;
}
NS_IMETHODIMP nsGenericFactory::GetClassID(nsCID **aClassID)
NS_IMETHODIMP nsGenericFactory::GetClassID(nsCID *aClassID)
{
*aClassID = (nsCID *)nsMemory::Clone(&mInfo->mCID, sizeof(nsCID));
if (!*aClassID)
return NS_ERROR_OUT_OF_MEMORY;
*aClassID = mInfo->mCID;
return NS_OK;
}