Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6151945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:50:39+00:00 2026-05-23T19:50:39+00:00

The code causing a leak of one block is as follows: in = new

  • 0

The code causing a leak of one block is as follows:


    in = new RandomAccessFile(fileName, "r");
    in->close();
    Mem::delObject(in);

where RandomAccessFile is the class with the string field, and delObject() is a static method as follows:


    void Mem::delObject(Object* object) {
        delete object;
    }

The leaked block is that of string.

If I replace the method delObject with a direct delete:


    in = new RandomAccessFile(fileName, "r");
    in->close();
    delete(in);

the leak is gone. If the method is not replaced, but removed instead:


    in = new RandomAccessFile(fileName, "r");
    in->close();
    // Mem::delObject(in);
    // delete(in);

there are two leaked blocks. I guess the field and the object that contained it.

So: why these two ways of deleting an object behave differently?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T19:50:40+00:00Added an answer on May 23, 2026 at 7:50 pm

    I can only guess but it seems you forgot a virtual destructor in Object class. Thus the RandomAccessFile destructor won’t be called causing a leak of its properties.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am new to Python. The following code is causing an error when it
Why is the following code causing a memory leak in an iPhone App? All
I'm curious about the following code: class MyClass { public: MyClass() : _myArray(new int[1024])
I have the following code, which is causing a leak, despite ARC being enabled
The following code is causing an intermittent crash on a Vista machine. using (SoundPlayer
The following linq2sql code is causing me much headache and I was hoping someone
The following code is causing me some problems. The third line causes a program
This morning we found an old chunk of code that was causing a library
This line in YUI's Reset CSS is causing trouble for me: address,caption,cite,code,dfn,em,strong,th,var { font-style:
The following code is a simple thread game, that switches between threads causing the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.