diff options
author | Karl Stiefvater (qarl) <qarl@lindenlab.com> | 2010-02-08 13:13:16 -0600 |
---|---|---|
committer | Karl Stiefvater (qarl) <qarl@lindenlab.com> | 2010-02-08 13:13:16 -0600 |
commit | de2fabcf3d7ea45b51225cad7a0381eadf90d14e (patch) | |
tree | 3d3858be16fbf1d174a13713d897d1da384c0339 | |
parent | 3ab0c3238bec95863784850d2a95e9c09afce539 (diff) |
EXT-4929 Crash in llimage.cpp
EXT-4713 Hook attachment from loco pocos pirate outfit causes viewer crash
removed broken assert (all cases are covered by asserts downstream.)
reviewed by James.
-rw-r--r-- | indra/llimage/llimage.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index e02be6c8c1..5649b4cab7 100644 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -676,9 +676,6 @@ void LLImageRaw::copy(LLImageRaw* src) LLImageRaw* dst = this; // Just for clarity. - llassert( (3 == src->getComponents()) || (4 == src->getComponents()) ); - llassert( (3 == dst->getComponents()) || (4 == dst->getComponents()) ); - if( (src->getWidth() == dst->getWidth()) && (src->getHeight() == dst->getHeight()) ) { // No scaling needed |