1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Fix a double-free in the Gtk event log.

It could occur some time after a line was selected in the event log
window.
This commit is contained in:
Jacob Nevins 2014-11-08 22:22:34 +00:00
parent 9090c1bb69
commit a45f4c2955

View File

@ -3550,6 +3550,7 @@ static void eventlog_destroy(GtkWidget *widget, gpointer data)
es->window = NULL;
sfree(es->seldata);
es->seldata = NULL;
dlg_cleanup(&es->dp);
ctrl_free_box(es->eventbox);
}