Opened 14 years ago Closed 14 years ago #139 closed defect (fixed)Memory leak in Void TComAdaptiveLoopFilter::create
Description
Memory leak in TComAdaptiveLoopFilter::create was reported by valgrind. In fact, m_imgY_temp was allocated in TComAdaptiveLoopFilter::create but was never freed.
It is quite easy to fix this bug: Add the following line in bold into Void TComAdaptiveLoopFilter::destroy(), namely
Void TComAdaptiveLoopFilter::destroy()
}
According to valgrind, there are other minor memory leak. But they are not serious. Change History (4)comment:1 Changed 14 years ago by fbossen
comment:2 Changed 13 years ago by davidf
Updating component after adding WD (Text) tickets comment:3 Changed 13 years ago by davidf
comment:4 Changed 13 years ago by davidf
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
Seems already fixed