diff options
| -rwxr-xr-x | indra/llimage/llimage.cpp | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index 7645034bd9..08462c7834 100755 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -197,9 +197,7 @@ private:  			{  				pos = val >> 16; -				if (pos < 0) -					vp[j] = 0; -				else if (pos >= (srcSz - 1)) +				if (pos >= (srcSz - 1))  					vp[j] = 0;  				else  					vp[j] = (val >> 8) - ((val >> 8) & 0xffffff00); | 
