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
parent
65990de390
commit
f7b914228b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue