eliminate 24 callers to nsCRT::memmove to use memmove from libC instead. removed nsCRT::memove() bug 118135 r=dp sr=brendan

git-svn-id: svn://10.0.0.236/trunk@113965 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cathleen%netscape.com
2002-02-08 01:11:33 +00:00
parent 5fe5ac17ad
commit 184587ade7
15 changed files with 40 additions and 40 deletions

View File

@@ -1094,8 +1094,8 @@ HTMLAttributesImpl::UnsetAttributeName(nsIAtom* aAttrName, PRBool& aFound)
}
else {
if (index < mAttrCount) {
nsCRT::memmove(&(mAttrNames[index]), &(mAttrNames[index + 1]),
(mAttrCount - index) * sizeof(nsIAtom*));
memmove(&(mAttrNames[index]), &(mAttrNames[index + 1]),
(mAttrCount - index) * sizeof(nsIAtom*));
}
}
NS_RELEASE(aAttrName);