高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】memory leak
memory leak
memory leak
i am getting a memory leak and i think it is because i am not calling release on the oddbdatabaseptr object. i tried calling in my onclosedocument(...) event but then i get an exception in the smartptr.h file at line 220:
code:
inline void release()
{
if (m_pobject)
{
((t*)m_pobject)->release();
m_pobject = null;
}
}
where should i call release?
i should note the dump:
code:
detected memory leaks!
dumping objects ->
{51} normal block at 0x00c61b40, 33 bytes long.
data: < c > 00 43 00 cd cd cd cd cd cd cd cd cd cd cd cd cd
{50} normal block at 0x00c61b90, 40 bytes long.
data: < |l > 14 7c 4c 10 16 00 00 00 00 00 00 00 00 00 00 00
object dump complete.
after searching this site, i noticed that some of the other members have had experience with this same problem.
what, if anything, is the fix?
mike b
last edited by mikeb; 6th january 2005 at 01:35 pmfff">.
you needs to call release() before oduninitialize() to avoid an exception.
|