Temporary destructor patch until Steve can release next version of PUI.
This commit is contained in:
parent
18ac42b2e4
commit
af80c5e018
@ -255,8 +255,13 @@ puInterface::~puInterface ()
|
|||||||
{
|
{
|
||||||
puPopLiveInterface () ;
|
puPopLiveInterface () ;
|
||||||
|
|
||||||
for ( puObject *bo = dlist ; bo != NULL ; bo = bo->next )
|
puObject *bo = dlist ;
|
||||||
|
|
||||||
|
while ( bo != NULL ) {
|
||||||
|
puObject *tmp_bo = bo->next ;
|
||||||
delete bo ;
|
delete bo ;
|
||||||
|
bo = tmp_bo ;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user