Fix small memory leak.
This commit is contained in:
parent
c366907f64
commit
91501becf6
|
@ -677,6 +677,7 @@ wxvbamApp::~wxvbamApp() {
|
|||
free(home);
|
||||
home = NULL;
|
||||
}
|
||||
delete overrides;
|
||||
}
|
||||
|
||||
MainFrame::MainFrame()
|
||||
|
|
|
@ -79,6 +79,7 @@ public:
|
|||
wxvbamApp()
|
||||
: wxApp()
|
||||
, pending_fullscreen(false)
|
||||
, frame(NULL)
|
||||
, using_wayland(false)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue