aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs
index 6545be7..38151b1 100644
--- a/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Assets/GetTextureModule.cs
@@ -186,13 +186,13 @@ namespace OpenSim.Region.CoreModules.Avatar.ObjectCaps
186 // Range request 186 // Range request
187 int start, end; 187 int start, end;
188 if (TryParseRange(range, out start, out end)) 188 if (TryParseRange(range, out start, out end))
189 { 189 {
190 // Before clamping end make sure we can satisfy it in order to avoid 190 // Before clamping end make sure we can satisfy it in order to avoid
191 // sending back the last byte instead of an error status 191 // sending back the last byte instead of an error status
192 if (end >= texture.Data.Length) 192 if (end >= texture.Data.Length)
193 { 193 {
194 response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable; 194 response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable;
195 return; 195 return;
196 } 196 }
197 197
198 end = Utils.Clamp(end, 0, texture.Data.Length - 1); 198 end = Utils.Clamp(end, 0, texture.Data.Length - 1);