diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-10-03 15:17:35 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-10-03 15:17:35 +0300 |
commit | 21d8a7f09ce544240a4d70df6e8879996c5059f6 (patch) | |
tree | f9c4aa5f8d80414e21c5cd96e94d10f69ae4960a /indra | |
parent | e0265d3754b190d28d5a5a55fc1a1e510d9aef59 (diff) |
startup crash fix
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llmediactrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmediactrl.cpp b/indra/newview/llmediactrl.cpp index 803bacc567..a8025906c7 100644 --- a/indra/newview/llmediactrl.cpp +++ b/indra/newview/llmediactrl.cpp @@ -872,7 +872,7 @@ void LLMediaCtrl::calcOffsetsAndSize(S32 *x_offset, S32 *y_offset, S32 *width, S if (mStretchToFill) { - if (mMaintainAspectRatio) + if (mMaintainAspectRatio && mMediaSource && mMediaSource->getMediaPlugin()) { F32 media_aspect = (F32)(mMediaSource->getMediaPlugin()->getWidth()) / (F32)(mMediaSource->getMediaPlugin()->getHeight()); F32 view_aspect = (F32)(r.getWidth()) / (F32)(r.getHeight()); |