I've found what may be a bug in covtoolhelper.c
Line 393 says
if(executed_lines)
{
....
}
line_ref_table::iterator scan;
for(scan = executed_lines->begin();
scan != executed_lines->end();
++scan
)
{....}
The for loop outside the if statement will (and did) seg-fault if executed_lines
is 0. I don't know if it should be zero in the normal course of things, but it
was happening to me.
Rodney
This message was sent through MyMail http://www.mymail.com.au
|