weird line endings fix commit
parent
5e381ec67c
commit
3454dfbcb3
|
@ -186,13 +186,13 @@ namespace OpenSim.Region.CoreModules.Avatar.ObjectCaps
|
|||
// Range request
|
||||
int start, end;
|
||||
if (TryParseRange(range, out start, out end))
|
||||
{
|
||||
// Before clamping end make sure we can satisfy it in order to avoid
|
||||
// sending back the last byte instead of an error status
|
||||
if (end >= texture.Data.Length)
|
||||
{
|
||||
response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable;
|
||||
return;
|
||||
{
|
||||
// Before clamping end make sure we can satisfy it in order to avoid
|
||||
// sending back the last byte instead of an error status
|
||||
if (end >= texture.Data.Length)
|
||||
{
|
||||
response.StatusCode = (int)System.Net.HttpStatusCode.RequestedRangeNotSatisfiable;
|
||||
return;
|
||||
}
|
||||
|
||||
end = Utils.Clamp(end, 0, texture.Data.Length - 1);
|
||||
|
|
Loading…
Reference in New Issue