操作
バグ #2340
完了ExecutionContextProfile setOwnerのバグ他
開始日:
2012/02/04
期日:
進捗率:
100%
予定工数:
説明
ExecutionContextProfile::setOwner()でm_profile.ownerへの参照の代入が間違っているので修正する。
また、
また、
- addComponent()
- setOwner()
- getOwner()
- getKind()
でm_profileのロックが抜けているのでガードを追加する。
setOwner()の以下の行では、
m_profile.owner = RTC::RTObject::_duplicate(m_profile.owner); // line:233
m_profile.ownerをm_profile.ownerに入れられてますが、
これは、以下が正しいのではと思います。いかがでしょうか?m_profile.owner = RTC::RTObject::_duplicate(rtobj);
さらに、上記の処理は、m_profileMutexがガードしなくてもよろしかったでしょうか?
操作