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 1113379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:50:56+00:00 2026-05-17T02:50:56+00:00

I have the following in a simple C++ console project in Xcode. When I

  • 0

I have the following in a simple C++ console project in Xcode.
When I run this with instrument Leaks, Xcode does not flag any memory leaks
even thought there is a glaring one. What is going on ? Any help?

#include <iostream>

int main (int argc, char * const argv[]) {
    // insert code here...

    int *x = new int[20];
    x[0] = 10;
    std::cout << "Hello, World!\n";

    return 0;
}
  • 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-17T02:50:57+00:00Added an answer on May 17, 2026 at 2:50 am

    There’s no leak in your code. For a leak to occur, you have to lose the reference you have to allocated memory. In your case, you do nothing more with the allocated memory, but you still keep a reference to it. Therefore, Leaks thinks you could potentially free it later at some point, and doesn’t consider it a leak. (As a reminder, a leak is when you allocate memory, then dispose of the pointer without freeing the memory.)

    This program should make Leaks angry:

    int main()
    {
        int* foo = new int[10];
        foo = NULL;
        sleep(60);
    }
    

    As you can see, the address of the memory returned by new int[10] is irremediably lost when foo is overwritten with NULL. Therefore, Leaks should spot it.

    Leaks is not a statical analysis tool. It doesn’t know what you’re gonna do with your pointers. All it knows is that every block of allocated memory is still referenced somewhere.

    Leaks is also not a real-time tool. It doesn’t find leaks as soon as they occur. Instead, every 10 seconds or so, it freezes the program, scans its memory and tries to find references to all its allocated memory blocks. If it doesn’t find any for a specific block, it flags it as a leak. Therefore, if your program’s execution lasts less than 10 seconds, obviously Leaks won’t find anything helpful.

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

Sidebar

Related Questions

I have the following function //simple function with parameters and variable function thirdfunction(a,b,c,d){ console.log(the
I have the following simple function: private void EnableDisable941ScheduleBButton() { if (this._uosDepositorFrequency.Value != null)
I have a simple console application where I have the following setup: public interface
I have a pretty simple console project with an entity model (containing two simple
I have following setup in cloud9 IDE. Project root folder Hello.html - contains simple
I have a simple project broken up into the following source files: my.h: #ifndef
I have following simple class: @interface Article: NSObject { NSString *title; } @property (copy,
I have following simple program: import std.stdio; int main(string[] argv) { writeln(Hello, world!); return
I'm using MVC 4, EF 4.3 and the MVCScaffolding package. I have following simple
I have following rather simple query select count(*) from tbl t1, tbl t2 For

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.