[Bug 484] New: EKF_proposaldensity.cpp forgets to delete the filter

For more infomation about this bug, visit
Summary: EKF_proposaldensity.cpp forgets to delete the filter
Product: BFL
Version: trunk
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: core
AssignedTo: tinne [dot] delaet [..] ...
ReportedBy: tinne [dot] delaet [..] ...
CC: bfl [..] ...
Estimated Hours: 0.0

No delete in the destructor:

25 EKFPropDens::EKFPropDens(AnalyticSystemModelGaussianUncertainty *
SysModel,
26 AnalyticMeasurementModelGaussianUncertainty * MeasModel)
27 : FilterProposalDensity(SysModel,MeasModel)
28 {
29 _filter = new ExtendedKalmanFilter(_TmpPrior);
30 }
31
32 EKFPropDens::~EKFPropDens(){}

Tinne

[Bug 484] EKF_proposaldensity.cpp forgets to delete the filter

For more infomation about this bug, visit

Tinne De Laet <tinne [dot] delaet [..] ...> changed:

What |Removed |Added
--------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED

--- Comment #2 from Tinne De Laet <tinne [dot] delaet [..] ...> 2008-01-10 18:53:42 ---
Patch applied in revision 28823:

Sending EKF_proposaldensity.cpp
Transmitting file data .
Committed revision 28823.

[Bug 484] EKF_proposaldensity.cpp forgets to delete the filter

For more infomation about this bug, visit

--- Comment #1 from Tinne De Laet <tinne [dot] delaet [..] ...> 2008-01-10 18:52:45 ---
Created an attachment (id=198)
--> (https://www.fmtc.be/bugzilla/orocos/attachment.cgi?id=198)
add delete to constructor