操作
バグ #364
完了DataOutPortのdisconnect()での問題
開始日:
2009/01/28
期日:
進捗率:
100%
予定工数:
kurihara さんがほぼ16年前に更新
- ステータス を 新規 から 終了 に変更
- 担当者 を kurihara にセット
- 進捗率 を 0 から 100 に変更
PublisherFactory.cppのdestroy()メソッドを下記のように変更。
m$ svn diff PublisherFactory.cpp Index: PublisherFactory.cpp =================================================================== --- PublisherFactory.cpp (リビジョン 1212) +++ PublisherFactory.cpp (作業コピー) @@ -66,7 +66,9 @@ */ void PublisherFactory::destroy(PublisherBase* publisher) { - publisher->release(); - delete publisher; + if (publisher != NULL) { + publisher->release(); + delete publisher; + } }
操作