Fix memory leak introduced in yesterday's change.
* src/tgba/tgbatba.cc (tgba_sba_proxy::tgba_sba_proxy): Do not forget to free the initial state after usage.
This commit is contained in:
parent
27b419ce17
commit
975045a4e6
2 changed files with 9 additions and 0 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2010-03-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
Fix memory leak introduced in yesterday's change.
|
||||
|
||||
* src/tgba/tgbatba.cc (tgba_sba_proxy::tgba_sba_proxy): Do not
|
||||
forget to free the initial state after usage.
|
||||
|
||||
2010-03-06 Alexandre Duret-Lutz <adl@lrde.epita.fr>
|
||||
|
||||
Keep acceptance conditions on transitions going to accepting SCCs
|
||||
|
|
|
|||
|
|
@ -399,11 +399,13 @@ namespace spot
|
|||
// point already, so just return.
|
||||
delete dest;
|
||||
delete it;
|
||||
delete init;
|
||||
return;
|
||||
}
|
||||
delete dest;
|
||||
}
|
||||
delete it;
|
||||
delete init;
|
||||
}
|
||||
|
||||
// If we arrive here either because the number of acceptance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue