<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Run-time errors and memory leaks detection' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Run-time errors and memory leaks detection' posted on the 'C and C++' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sun, 26 May 2013 02:02:25 -0700</pubDate>
    <lastBuildDate>Sun, 26 May 2013 02:02:25 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Run-time errors and memory leaks detection</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/420359/run-time-errors-and-memory-leaks-detection/</link>
      <description>Hi!&lt;br /&gt;
&lt;br /&gt;
Created application is working toooo slow, looks like there are a lot of memory leaks, there are a lot of pointers.  So, please, can you advice some effective tool for run-time errors and memory leaks detection in Visual Studio C++?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/420359/run-time-errors-and-memory-leaks-detection/</guid>
      <pubDate>Sun, 19 Dec 2010 01:40:30 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: Run-time errors and memory leaks detection</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/420374/re-run-time-errors-and-memory-leaks-detection/#420374</link>
      <description>&lt;span style="color: Blue;"&gt;Slow code does not mean that memory leaks are there - it may be other cause for a slow code. Try your program in RELEASE mode - it will speed it up.&lt;br /&gt;
&lt;br /&gt;
At the end of your program call &lt;em&gt;_CrtDumpMemoryLeaks&lt;/em&gt;:&lt;/span&gt;&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
int WINAPI WinMain (...)
{
&lt;span style="color: Green;"&gt;    //
    //... all your code is here ...
    //&lt;/span&gt;
    _CrtDumpMemoryLeaks ();
    return 0;
}
&lt;/pre&gt;&lt;br /&gt;
&lt;span style="color: Blue;"&gt;If you see some leaks are reported - then you have to use the allocation number to track down the leak in code. Sometimes the leak file name and line are reported - sometimes they are not reported.&lt;br /&gt;
&lt;br /&gt;
Take a look here:&lt;br /&gt;
&lt;a href="http://msdn.microsoft.com/en-us/library/zh712wwf(v=vs.80).aspx"&gt;http://msdn.microsoft.com/en-us/library/zh712wwf(v=vs.80).aspx&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/420374/re-run-time-errors-and-memory-leaks-detection/#420374</guid>
      <pubDate>Sun, 19 Dec 2010 10:14:59 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>This post has been deleted.</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/420524/this-post-has-been-deleted/#420524</link>
      <description>This post has been deleted.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/420524/this-post-has-been-deleted/#420524</guid>
      <pubDate>Mon, 27 Dec 2010 06:03:46 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>This post has been deleted.</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/420525/this-post-has-been-deleted/#420525</link>
      <description>This post has been deleted.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/420525/this-post-has-been-deleted/#420525</guid>
      <pubDate>Mon, 27 Dec 2010 06:07:19 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>This post has been deleted.</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/420526/this-post-has-been-deleted/#420526</link>
      <description>This post has been deleted.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/420526/this-post-has-been-deleted/#420526</guid>
      <pubDate>Mon, 27 Dec 2010 06:09:10 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: Run-time errors and memory leaks detection</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/426705/re-run-time-errors-and-memory-leaks-detection/#426705</link>
      <description>You can use deleaker. It must help you.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/426705/re-run-time-errors-and-memory-leaks-detection/#426705</guid>
      <pubDate>Wed, 04 Jan 2012 22:54:09 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: Run-time errors and memory leaks detection</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/420359/426708/re-run-time-errors-and-memory-leaks-detection/#426708</link>
      <description>You can use deleaker. It must help you.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/420359/426708/re-run-time-errors-and-memory-leaks-detection/#426708</guid>
      <pubDate>Wed, 04 Jan 2012 23:09:27 -0700</pubDate>
      <category>C and C++</category>
    </item>
  </channel>
</rss>