高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】are there memory leak in exportdwf function
are there memory leak in exportdwf function ?
are there memory leak in exportdwf function ?
if use function "exportdwf" in odamfcappdoc when i exit from application my compiler detected memory leaks. i use ms visual c 6. is a problem of my compiler? it is only if i export :
params.format = dw_uncompressed_binary;
params.version = ndwf_v60;
or
params.format = dw_ascii;
params.version = ndwf_v60;
last edited by rareba; 2nd march 2006 at 09:23 amfff">.
in oddwfexportex sample is correct this:
if (!strcmp(argv[3],"b6"))
{
params.format = dw_uncompressed_binary;
params.version = ndwf_v60;
pagedata.slayout = m_pdb->findactivelayout(true);
params.arpagedata.append(pagedata);
}
?
|