From 07586351e69b8922cfc9cbc1db6f2de7dbcbd8b1 Mon Sep 17 00:00:00 2001 From: "axel%pike.org" Date: Thu, 29 Aug 2002 08:46:11 +0000 Subject: [PATCH] adding r= comment by sicking from the trunk checkin of the trivialities to the branch git-svn-id: svn://10.0.0.236/branches/XSLTPROCESSOR_REFACTOR_20020630_BRANCH@128450 18797224-902f-48f8-a5cc-f745e15eee43 --- .../extensions/transformiix/source/base/txExpandedNameMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/extensions/transformiix/source/base/txExpandedNameMap.cpp b/mozilla/extensions/transformiix/source/base/txExpandedNameMap.cpp index f148de3935e..31ca35807f0 100644 --- a/mozilla/extensions/transformiix/source/base/txExpandedNameMap.cpp +++ b/mozilla/extensions/transformiix/source/base/txExpandedNameMap.cpp @@ -176,7 +176,7 @@ TxObject* txExpandedNameMap::remove(const txExpandedName& aKey) } --mItemCount; if (i != mItemCount) { - memmove(&mItems[i], &mItems[mItemCount], sizeof(MapItem)); + memcpy(&mItems[i], &mItems[mItemCount], sizeof(MapItem)); } } }