* Reverting the CSJ2K Array.Copy -> Buffer.BlockCopy optimization for now since I didn't properly update the length parameter the first time around (LIBOMV-861)
git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3415 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -334,13 +334,13 @@ ploop: ;
|
||||
if (termp != null)
|
||||
{
|
||||
isTermPass = new bool[n];
|
||||
Buffer.BlockCopy(termp, 0, isTermPass, 0, n);
|
||||
Array.Copy(termp, 0, isTermPass, 0, n);
|
||||
}
|
||||
else
|
||||
{
|
||||
isTermPass = null;
|
||||
}
|
||||
Buffer.BlockCopy(rates, 0, truncRates, 0, n);
|
||||
Array.Copy(rates, 0, truncRates, 0, n);
|
||||
for (k = first_pnt, p = - 1, i = 0; k < n; k++)
|
||||
{
|
||||
if (rates[k] > 0)
|
||||
|
||||
Reference in New Issue
Block a user