$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Mary Huther (maryhuther_at_[hidden])
Date: 2006-08-09 00:05:40
Hi...I need help bad. I just started using boost and it seemed very useful for 
doing regular expressions. I do have a problem and that is I have tons of 
memory leaks and I am not sure how or if it can be fixed. I have isolated the 
leak to the following section of code:
for(iter = mapData.begin(); iter != mapData.end(); iter++)
{
        // MH: Leak here
        const wchar_t * expressionText = (wchar_t *)(*iter).first.c_str(); 
        const wchar_t * formatText = (wchar_t *)(*iter).second.c_str();
                
        boost::wregex e1(expressionText);
        searchString = boost::regex_replace(searchString,
                                           e1,					
                                           formatText);
}
Can someone please help me?