diff options
author | Oz Linden <oz@lindenlab.com> | 2016-12-05 17:40:04 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-12-05 17:40:04 -0500 |
commit | 295a4c63b4912f05a729178e8e34ba26e92ff37b (patch) | |
tree | 19fc1232fc6f8040ce5598fdd9649646116f7ea9 /indra/llappearance/lldriverparam.cpp | |
parent | 2d8ad89f33e9fa65dea11fd4c78962fc568ee00a (diff) | |
parent | 05d58c91ef55fd90ea2f3e0f1a1199ac5e690b30 (diff) |
merge changes for 5.0.0-release
Diffstat (limited to 'indra/llappearance/lldriverparam.cpp')
-rw-r--r-- | indra/llappearance/lldriverparam.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llappearance/lldriverparam.cpp b/indra/llappearance/lldriverparam.cpp index e630c1118b..e5e502b158 100644 --- a/indra/llappearance/lldriverparam.cpp +++ b/indra/llappearance/lldriverparam.cpp @@ -110,6 +110,14 @@ void LLDriverParamInfo::toStream(std::ostream &out) out << std::endl; + // FIXME - this mDriverParam backlink makes no sense, because the + // LLDriverParamInfos are static objects - there's only one copy + // for each param type, so the backlink will just reference the + // corresponding param in the most recently created + // avatar. Apparently these toStream() methods are not currently + // used anywhere, so it's not an urgent problem. + LL_WARNS_ONCE() << "Invalid usage of mDriverParam." << LL_ENDL; + if(mDriverParam && mDriverParam->getAvatarAppearance()->isSelf() && mDriverParam->getAvatarAppearance()->isValid()) { |