News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Memory Leak?

Started by spflanze, September 13, 2017, 11:45:43 PM

Previous topic - Next topic

spflanze

I followed this tutorial to its end:
http://wiki.codeblocks.org/index.php/WxSmith_tutorial:_Working_with_multiple_resources

At the bottom of this tutorial there are instructions to add this code:

void Tutorial_4Frame::OnButton2Click(wxCommandEvent& event)
{
    FirstDialog* dlg = new FirstDialog(this);
    dlg->Show();
}

void Tutorial_4Frame::OnButton3Click(wxCommandEvent& event)
{
    FirstFrame* frm = new FirstFrame(this);
    frm->Show();
}


I cannot find where in the code the dlg and frm objects are deleted. Does this project created according to this tutorial's instructions leak memory?

ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.