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