操作
バグ #364
完了DataOutPortのdisconnect()での問題
開始日:
2009/01/28
期日:
進捗率:
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; + } }