aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/LLSD.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-18 20:02:25 +0000
committerMelanie Thielker2008-11-18 20:02:25 +0000
commit0abb762ecc3b87e210ffb7009bdddf8a1a159419 (patch)
tree63146b32190da78537f658dcd73b28701bbf2bae /OpenSim/Framework/Communications/Capabilities/LLSD.cs
parentRemove perts of jhurliman's AD security patch that had slipped in (diff)
downloadopensim-SC_OLD-0abb762ecc3b87e210ffb7009bdddf8a1a159419.zip
opensim-SC_OLD-0abb762ecc3b87e210ffb7009bdddf8a1a159419.tar.gz
opensim-SC_OLD-0abb762ecc3b87e210ffb7009bdddf8a1a159419.tar.bz2
opensim-SC_OLD-0abb762ecc3b87e210ffb7009bdddf8a1a159419.tar.xz
Patch from jhurliman. Fixing the texture decoding issues in progressive
texture sending. Grain of salt not included.
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities/LLSD.cs')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/LLSD.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSD.cs b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
index 44c4a05..e754256 100644
--- a/OpenSim/Framework/Communications/Capabilities/LLSD.cs
+++ b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
@@ -561,7 +561,7 @@ namespace OpenSim.Framework.Communications.Capabilities
561 endPos = FindEnd(llsd, 1); 561 endPos = FindEnd(llsd, 1);
562 562
563 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float, 563 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float,
564 Helpers.EnUsCulture.NumberFormat, out value)) 564 Utils.EnUsCulture.NumberFormat, out value))
565 return value; 565 return value;
566 else 566 else
567 throw new LLSDParseException("Failed to parse double value type"); 567 throw new LLSDParseException("Failed to parse double value type");