13
0

fix thinko in cleaning up of XML nodes in Session::memento_command_factory()

"child" is not an independent object, but points to either before or after, both of which have
already been deleted
This commit is contained in:
Paul Davis 2022-01-23 07:46:39 -07:00
parent 6ff1d86cad
commit fea76a4adf

View File

@ -149,7 +149,6 @@ Session::memento_command_factory(XMLNode *n)
delete after;
delete before;
delete child;
return 0 ;
}