mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
GUI: Delay deletion of child widgets when rebuilding launcher and options dialog
This is to avoid writing in deleted memory in the ButtonWidget::sendCommand when the sent command results in the parent dialog being rebuilt.
This commit is contained in:
parent
cc75d17e9c
commit
1a874f9c07
@ -204,7 +204,10 @@ void LauncherDialog::clean() {
|
||||
while (_firstWidget) {
|
||||
Widget* w = _firstWidget;
|
||||
removeWidget(w);
|
||||
delete w;
|
||||
// This is called from rebuild() which may result from handleCommand being called by
|
||||
// a child widget sendCommand call. In such a case sendCommand is still being executed
|
||||
// so we should not delete yet the child widget. Thus delay the deletion.
|
||||
g_gui.addToTrash(w, this);
|
||||
}
|
||||
delete _browser;
|
||||
delete _loadDialog;
|
||||
|
@ -423,7 +423,10 @@ void OptionsDialog::clean() {
|
||||
while (_firstWidget) {
|
||||
Widget* w = _firstWidget;
|
||||
removeWidget(w);
|
||||
delete w;
|
||||
// This is called from rebuild() which may result from handleCommand being called by
|
||||
// a child widget sendCommand call. In such a case sendCommand is still being executed
|
||||
// so we should not delete yet the child widget. Thus delay the deletion.
|
||||
g_gui.addToTrash(w, this);
|
||||
}
|
||||
init();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user