diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2014-05-08 19:20:20 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2014-05-08 19:20:20 +0300 |
commit | 794523d81d1ae6d83848dc4e2e4076c51bd66598 (patch) | |
tree | 69b3cce5fb00c913f13531c482603dec98a6a228 | |
parent | a5568f942b449e48cad71e92acd67eaa22dd5e5d (diff) |
MAINT-3981 FIXED [SECURITY] Notecard being passed around that crashes any V3 based viewer when opened
-rwxr-xr-x | indra/newview/llviewertexteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp index 69f9bbdff8..81a1d26e5e 100755 --- a/indra/newview/llviewertexteditor.cpp +++ b/indra/newview/llviewertexteditor.cpp @@ -179,7 +179,7 @@ public: /*virtual*/ bool getDimensions(S32 first_char, S32 num_chars, S32& width, S32& height) const { - if (num_chars == 0) + if (num_chars == 0 || !mImage) { width = 0; height = 0; |