Fixes Mantis #3253. Thank you kindly, Godfrey, for a patch that:

Corrects the incomplete implementation of llXorBase64StringsCorrect()
so that it returns the proper reversible result.
0.6.4-rc1
Charles Krinke 2009-03-05 03:15:30 +00:00
parent 65990de390
commit f7b914228b
1 changed files with 1 additions and 1 deletions

View File

@ -8658,7 +8658,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
int c = 0;
for (int i = 0; i < src1.Length; i++)
{
ret += src1[i] ^ src2[c];
ret += (char) (src1[i] ^ src2[c]);
c++;
if (c >= src2.Length)