memory leak on multimap

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
only declare a multimap, never add anything and m_SubTrackMap.clear() is called
typedef std::multimap<int, int> STRMAP;<br/>
typedef STRMAP::value_type VALUETYPE;<br/>
typedef STRMAP::iterator SUBTRACKIT;<br/>
STRMAP m_SubTrackMap;
Visual Studio(VS6.0 windowXP) reports memory leak
Dumping objects -><br/>
{12508} normal block at 0x01972100, 24 bytes long.<br/>
Data: < > 00 00 00 00 00 00 00 00 00 00 00 00 CD CD CD CD

View the full article
 
Back
Top