@@ -51569,8 +51569,8 @@ bool CFinalize::MergeFinalizationData (CFinalize* other_fq)
51569
51569
size_t thisSize = thisLimit - thisIndex;
51570
51570
size_t otherSize = otherLimit - otherIndex;
51571
51571
51572
- memmove (&newArray[thisIndex + otherIndex], &m_Array[thisIndex ], sizeof(newArray[0]) * thisSize);
51573
- memmove (&newArray[thisLimit + otherIndex], &other_fq->m_Array[otherIndex], sizeof(newArray[0]) * otherSize);
51572
+ memmove (&newArray[thisIndex + otherIndex], &m_Array[thisIndex ], sizeof(newArray[0])* thisSize );
51573
+ memmove (&newArray[thisLimit + otherIndex], &other_fq->m_Array[otherIndex], sizeof(newArray[0])* otherSize);
51574
51574
}
51575
51575
51576
51576
// copy the finalization data from this and the other finalize queue
@@ -51585,8 +51585,8 @@ bool CFinalize::MergeFinalizationData (CFinalize* other_fq)
51585
51585
size_t thisSize = thisIndexFromEnd - thisLimitFromEnd;
51586
51586
size_t otherSize = otherIndexFromEnd - otherLimitFromEnd;
51587
51587
51588
- memmove (&newArray[thisArraySize + growthCount - thisIndexFromEnd - otherIndexFromEnd], m_EndArray - thisIndexFromEnd, sizeof(newArray[0]) * thisSize);
51589
- memmove (&newArray[thisArraySize + growthCount - thisLimitFromEnd - otherIndexFromEnd], other_fq->m_EndArray - otherIndexFromEnd, sizeof(newArray[0]) * otherSize);
51588
+ memmove (&newArray[thisArraySize + growthCount - thisIndexFromEnd - otherIndexFromEnd], m_EndArray - thisIndexFromEnd, sizeof(newArray[0])* thisSize );
51589
+ memmove (&newArray[thisArraySize + growthCount - thisLimitFromEnd - otherIndexFromEnd], other_fq->m_EndArray - otherIndexFromEnd, sizeof(newArray[0])* otherSize);
51590
51590
}
51591
51591
51592
51592
// adjust the m_FillPointers to reflect the sum of both queues on this queue,
0 commit comments