mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user