active questions tagged memory-leaks - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T22:55:39Zhttp://stackoverflow.com/feeds/tag/memory-leakshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818861/memory-leak-memory-allocation-in-c1Memory leak/Memory allocation in C++Prabhu2009-11-30T09:55:56Z2009-11-30T18:03:44Z
<p>I have the following function in C++</p>
<pre><code>void func1()
{
char *p = "Test for memory leak";
}
</code></pre>
<p>When <code>func1()</code> is called where is the memory for the variable allocated? Whether in the stack or the heap? Should <code>delete p;</code> be called explicitly?</p>
http://stackoverflow.com/questions/1799373/how-can-i-prevent-compileassemblyfromsource-from-leaking-memory1How can I prevent CompileAssemblyFromSource from leaking memory?Nogwater2009-11-25T19:24:12Z2009-11-29T01:05:26Z
<p>I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it did before creating the assembly. My code is in a ASP.NET web app, but I've duplicated this problem in a WinForm. I'm using System.GC.GetTotalMemory(true) and Red Gate ANTS Memory Profiler to measure the growth (about 600 bytes with the sample code).</p>
<p>From the searching I've done, it sounds like the leak comes from the creation of new types, not really from any objects that I'm holding references to. Some of the web pages I've found have mentioned something about AppDomain, but I don't understand. Can someone explain what's going on here and how to fix it?</p>
<p>Here's some sample code for leaking:</p>
<pre><code>private void leak()
{
CSharpCodeProvider codeProvider = new CSharpCodeProvider();
CompilerParameters parameters = new CompilerParameters();
parameters.GenerateInMemory = true;
parameters.GenerateExecutable = false;
parameters.ReferencedAssemblies.Add("system.dll");
string sourceCode = "using System;\r\n";
sourceCode += "public class HelloWord {\r\n";
sourceCode += " public HelloWord() {\r\n";
sourceCode += " Console.WriteLine(\"hello world\");\r\n";
sourceCode += " }\r\n";
sourceCode += "}\r\n";
CompilerResults results = codeProvider.CompileAssemblyFromSource(parameters, sourceCode);
Assembly assembly = null;
if (!results.Errors.HasErrors)
{
assembly = results.CompiledAssembly;
}
}
</code></pre>
<p><strong>Update 1:</strong> This question may be related: <a href="http://stackoverflow.com/questions/1162686/dynamically-loading-and-unloading-a-a-dll-generated-using-csharpcodeprovider">Dynamically loading and unloading a a dll generated using CSharpCodeProvider </a></p>
<p><strong>Update 2:</strong> Trying to understand application domains more, I found this: <a href="http://codebetter.com/blogs/raymond.lewallen/archive/2005/04/03/61190.aspx" rel="nofollow">What is an application domain - an explanation for .Net beginners</a></p>
<p><strong>Update 3:</strong> To clarify, I'm looking for a solution that provides the same functionality as the code above (compiling and providing access to generated code) without leaking memory. It looks like the solution will involve creating a new AppDomain and marshaling.</p>
http://stackoverflow.com/questions/1808173/cocoa-objects-allocation-deallocation-memory-optimization0COCOA Objects Allocation/Deallocation + Memory OptimizationParesh Thakor2009-11-27T11:19:07Z2009-11-27T15:54:01Z
<p>Hello friends,</p>
<p>Ah.. We've developed a good iPhone application. Now, 'm passing through last phases of it, i.e. profiling it and I've encountered few problems. Application has few leaks and objects occupying large memory chunks. We just checked somehow, application is not lowering its memory requirements and blocks remain occupied with creation of each View Controller.</p>
<p>Some of the views I really don't want after their disappearance, but they are not deallocated.</p>
<p>We're also downloading large files into iPhone through app but once we download very large file (> 10 MB), it crashes. Because after download we've also used thumbnail generation logic into which UIImage is created with 'contentsOfFile'..! So, app generally crashes after use of large files. We've used UIWebView for thumbnails.</p>
<p>My real problem is download, thumbnail, preview of larger files... clearing unnecessary memory (objects) once view is not in focus..!</p>
<p>Can anyone help me get rid of such problems easily???
I really don't wanna go through long long code..!</p>
<p>Thank You..!</p>
http://stackoverflow.com/questions/1805102/is-anyone-have-memory-leaks-using-cocos2d0Is anyone have memory leaks using cocos2d?Frank2009-11-26T18:30:51Z2009-11-27T15:37:08Z
<p>I am detecin a memory leak particularily in the startAnimation method in the director object.</p>
<pre><code>- (void) startAnimation
{
if ( gettimeofday( &lastUpdate, NULL) != 0 ) {
CCLOG(@"cocos2d: DisplayLinkDirector: Error on gettimeofday");
}
// approximate frame rate
// assumes device refreshes at 60 fps
int frameInterval = (int) floor(animationInterval * 60.0f);
CCLOG(@"cocos2d: Frame interval: %d", frameInterval);
displayLink = [NSClassFromString(@"CADisplayLink") displayLinkWithTarget:self selector:@selector(preMainLoop:)];
[displayLink setFrameInterval:frameInterval];
[displayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
}
</code></pre>
<p>It leaks at : <code>[NSClassFromString(@"CADisplayLink") displayLinkWithTarget:self selector:@selector(preMainLoop:)];</code></p>
<p>This only occurs in the device and not in the simulator.
Not sure if anyone else is getting this?</p>
http://stackoverflow.com/questions/1808870/leaking-memory-in-iphone-app0Leaking memory in Iphone appApp_beginner2009-11-27T13:45:49Z2009-11-27T13:45:49Z
<p>Hi.</p>
<p>I have app that uses a SQlite class to populate a UITableView. When a user selects a row in the table view, the view controller pushes another view controller with a new table view. That gets populated using another method in the same sqlite class, based on user the users selection. A sort of drill-down tableview. </p>
<p>However I have a problem with memory leak. When I launch the application, it is working the first three or four times I selct a row, but after that I havce leaked so much memory that it shuts down. The app also contains three tab bar buttons, that will take you to other view controllers that use the same sqlite class. But when I try to push one of the tab buttons, the app shuts down again. Giving the same error as it does when using the nav controller.</p>
<p>I have used instruments, and tracked down the memory leak to my SQLite method, however I am unable to fix it.</p>
<p>Hopefully someone here can help me. I can supply more code if neccecary.</p>
<pre><code>- (id) SqliteStatement:(const char *)_sporring dbn:(NSString *)_dbn dbp:(NSString *)_dbp
</code></pre>
<p>{</p>
<pre><code>sqlite3 *database;
NSMutableArray *aInformation = [[NSMutableArray alloc] init];
self.information = aInformation;
[aInformation release];
if(sqlite3_open([_dbp UTF8String], &database) == SQLITE_OK) {
sqlite3_create_function(database, "distance", 4, SQLITE_UTF8, NULL, &distanseFunksjon, NULL, NULL);
const char *sqlSporring = _sporring;
sqlite3_stmt *kompilertSporring;
if(sqlite3_prepare_v2(database, sqlSporring, -1, &kompilertSporring, NULL) == SQLITE_OK) {
while(sqlite3_step(kompilertSporring) == SQLITE_ROW)
{
NSString *aStopp = [NSString stringWithUTF8String:(char *)sqlite3_column_text(kompilertSporring, 1)];
Stops *aStops = [[Stops alloc] initWithName:aStopp];
[informasjon addObject:aStops];
[aStops release];
aStops = nil;
}
}
sqlite3_finalize(kompilertSporring);
}
sqlite3_close(database);
return self;
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1804416/how-to-correctly-free-finalize-an-activex-dll-in-delphi0How to correctly free/finalize an ActiveX DLL in Delphi?schnaader2009-11-26T15:44:55Z2009-11-26T19:33:42Z
<p>We are using a class called ODNCServer here - at initialization, an <code>TAutoObjectFactory</code> object is created:</p>
<pre><code>initialization
pAutoObjectFactory := TAutoObjectFactory.Create(ComServer, TODNCServer, Class_ODNCServer, ciSingleInstance, tmApartment);
</code></pre>
<p>Now <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM</a> is complaining about a memory leak because this object isn't freed anywhere. If I add a finalization statement like this</p>
<pre><code>finalization
if assigned(pAutoObjectFactory) then
TAutoObjectFactory(pAutoObjectFactory).Free;
</code></pre>
<p>then the object is freed, but <em>after</em> the FastMM dialog about the memory leak pops up, so actually, the OS seems to be unloading the DLL, not the program. Instances of <code>ODNCServer</code> are created like this</p>
<pre><code>fODNCServer := TODNCServer.Create(nil);
//register into ROT
OleCheck(
RegisterActiveObject(
fODNCServer.DefaultInterface, // instance
CLASS_ODNCServer, // class ID
ACTIVEOBJECT_STRONG, //strong registration flag
fODNCServerGlobalHandle //registration handle result
));
</code></pre>
<p>and freed like this:</p>
<pre><code>if ((assigned(fODNCServer)) and (fODNCServerGlobalHandle <> -1)) then
begin
Reserved := nil;
OleCheck(RevokeActiveObject(fODNCServerGlobalHandle,Reserved));
fDTRODNCServerGlobalHandle := -1;
end;
FreeAndNil(fODNCServer);
</code></pre>
<p>So, does anybody know what I have to change to get rid of that memory leak? By the way, I also tried using FastMM's <code>RegisterExpectedMemoryLeaks</code> to register and ignore the leak, but this doesn't seem to work. Additionally, even if, it would just be a workaround and I'd like to know the right way to do this.</p>
http://stackoverflow.com/questions/926779/net-resource-leak-gotchas8.NET Resource Leak GotchasThomas Bratt2009-05-29T16:00:39Z2009-11-26T12:20:48Z
<p>There are several ways that developers can get caught out by unintentional resource leaks in .NET. I thought it would be useful to gather them in one place.</p>
<p>Please add yours with one answer per item, so the best get voted up :)</p>
http://stackoverflow.com/questions/1800423/what-is-the-performance-penalty-of-operator-overloading-stl0What is the performance penalty of operator overloading STLajay2009-11-25T22:40:03Z2009-11-26T11:28:38Z
<p>I like STL a lot. It makes coding algorithms very convenient since it provides you will all the primitives like parition, find, binary_search, iterators, priority_queue etc. Plus you dont have to worry about memory leaks at all.</p>
<p>My only concern is the performance penalty of operator overloading that is necessary to get STL working.
For comparison, I think it relies that == provides the needed semantics. We need to overload ==operator if we are adding our classes to a container.</p>
<p>How much efficiency am I losing for this convenience?</p>
<p>Another aside question regarding memory leaks:</p>
<ol>
<li>Can memory leak ever happen when using STL containers?</li>
<li>Can a memory leak ever happen in Java?</li>
</ol>
http://stackoverflow.com/questions/1796668/java-comparing-memory-heap-dumps-in-netbeans1Java: Comparing memory heap dumps in Netbeansbguiz2009-11-25T12:38:59Z2009-11-26T11:18:42Z
<p><strong><em>How do I compare memory heap dumps in Netbeans?</em></strong></p>
<p>What I have done is to configure my project to use profiling, then added several profiling points at chosen lines of code (similar to setting breakpoints). These profiling points trigger a "snapshot", which creates a memory dump.</p>
<p>As my application is running, the profiling tab lists each of the profiling points, and marks the number of <em>hits</em> it has encounteed, providing a link to open a report for that profiling point. In addition, the profiler control panel adds the new snapshots to a list.</p>
<p>If I open these reports and follow the links, or open the snapshots from the control panel, in both cases, Netbeans opens a <strong>snapshot</strong> tab with <code>Summary</code>, <code>Classes</code>, <code>Instances</code> and <code>OQL</code> subscreens.</p>
<p>If I select one of them from the Profiler control panel, and press save, the file gets saved in <code>HPROF</code> format.</p>
<p>If I select the menu <code>Profile --> Compare Memory Snapshots</code>, it only allows me to select <code>NPS</code> format files, of which I cannot obtain any.</p>
<p>I believe <em>Compare Memory Snapshots</em> sounds like it should be able to compare heap dumps, but I cannot figure out how to do it.</p>
<h2>Questions</h2>
<ul>
<li><p>Where is Netbeans putting the NPS files (if it is indeed creating them)? If not how do I get Netbeans to create NPS files triggered from profiling points?</p></li>
<li><p>Is there a way to get Netbeans to compare HPROF files, since that is the memory heap dump after all?</p></li>
<li><p>Or am I simply completely overlooking something altogether?</p></li>
</ul>
<p>Thanks!</p>
<p><hr></p>
<h3>Background</h3>
<p>Using Netbeans <code>6.7.1</code>.</p>
<p>I am doing memory profiling for a really large & complex application that has a memory leak problem. I have managed to solve large chunks of the leaks using a combination of Netbeans' profiler & JHAT (command line util that comes with JDK). It's the remaining stragglers that I need a more powerful heap analysis capabilities for - the
hypothesis-first approach that worked previously is becoming decreasingly effective.</p>
<p>This question's really specific, for more background see <a href="http://stackoverflow.com/questions/1752714/memory-profiling-for-java-desktop-application">a question I have asked previously</a>.</p>
http://stackoverflow.com/questions/1802540/apparent-memory-leak-in-web-application-maybe-from-ajax1Apparent memory leak in web application (maybe from AJAX?)Gausie2009-11-26T09:20:59Z2009-11-26T09:57:59Z
<p>Hi all</p>
<p>I'm running an AJAX request from a JavaScript-powered (+jQuery) webpage every 5 seconds for a set of JSON data. I left my application on overnight, and by morning my computer had completely frozen. I narrowed it down to my web browser and now, using Google Chrome's Resource Tracker, I can see that each request contributes a new memory expenditure, and the old JSON lingers.</p>
<p>As the source JSON is constantly changing, I call it with the timestamp as a parameter, to avoid caching... I realise caching would solve this problem, but it would also make my data invalid. </p>
<p>Any ideas? I'm overwriting the previous variable, so I don't see why the previous data should be retained. The memory increases don't happen at the same interval at the AJAX requests, so maybe its something else. I'd be happy to send someone the code privately, if it would help.</p>
<p>Thanks all :-)</p>
<p>Gausie</p>
http://stackoverflow.com/questions/88235/how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error19How to deal with "java.lang.OutOfMemoryError: PermGen space" errorChris2008-09-17T22:13:48Z2009-11-25T20:54:02Z
<p>Recently I ran into this error in my web application:</p>
<pre><code>java.lang.OutOfMemoryError: PermGen space
</code></pre>
<p>It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.</p>
<p>Apparently this can occur after redeploying an application a few times.</p>
http://stackoverflow.com/questions/1531637/iphone-memory-leaks-in-apples-code2iPhone Memory Leaks in Apple's CodeBrian2009-10-07T13:26:50Z2009-11-25T13:13:08Z
<p>I'm running leaks through Instruments on my iPhone app and I'm seeing a lot of leaks that don't appear to be coming from my code.</p>
<p>For example:</p>
<pre><code>NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
delegate:operation];
operation.urlConnection = connection;
[connection release];
</code></pre>
<p>Leaks is telling me that the first line is leaking 1008 bytes. That seems to be a pretty standard alloc init with a release. Other leaks that are mentioned are in UIKit and WebKit.</p>
<p>Is it possible that these leaks are in fact in Apple's frameworks, or is more likely my code and leaks isn't showing the information accurately?</p>
http://stackoverflow.com/questions/1429335/iphone-programming-avaudioplayer-leaks-memory-on-play0iPhone programming: avaudioplayer leaks memory on playDavid2009-09-15T20:03:49Z2009-11-25T11:52:06Z
<p>I'm new to using avadioplayer and I seems to have a memory when ever I play a sound.
I cannot figure out what I am missing to get rid of it inside Instrument. could this be a false positive?</p>
<p>ViewController.h :</p>
<pre><code>@interface ISpectatorViewController : UIViewController <UIAccelerometerDelegate>{
AVAudioPlayer *massCheerSoundID;
}
@property(nonatomic,retain) AVAudioPlayer * massCheerSoundID;
</code></pre>
<p>// ViewController.m</p>
<pre><code>- (void)viewDidLoad {
NSString * filePath;
filePath = [[NSBundle mainBundle] pathForResource:@"massCheer" ofType:@"mp3"];
massCheerSoundID = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:filePath ]error:nil];
}
- (void) playSound
{
if(massCheerSoundID.playing == false)
{
massCheerSoundID.currentTime = 0.0;
//leak here
[massCheerSoundID play];
}
}
- (void)dealloc {
[super dealloc];
[massCheerSoundID release];
}
</code></pre>
<p>I found out what the problem is.</p>
<p>I for got to add the AVAudioPlayerDelegate on the interface since I've set the UIAccelerometerDelegate instead</p>
<pre><code>@interface iSpectatorViewController: UIViewController<AVAudioPlayerDelegate>
</code></pre>
<p>and set the </p>
<pre><code>massCheerSoundId.delegate = self
</code></pre>
http://stackoverflow.com/questions/1792304/memory-leak-on-return-object2Memory leak on return objectFrank2009-11-24T19:17:19Z2009-11-24T21:25:09Z
<p>I have a hard time grasping this memory leak in my code. Basically it's returning an object containing a object. here's the following code:</p>
<pre><code>-(id) getOptions {
FileManager *file = [[FileManager alloc] initWithFileName:@"optionsFile.dat"];
Options *options = [[Options alloc] init];
NSMutableArray *fileArray = [[NSMutableArray alloc] init];
fileArray = [file loadFile: @"optionsFile"];
if ([fileArray count] > 0) {
options = [fileArray objectAtIndex:0];
}
[file release];
return options;
}
</code></pre>
<p>I try to retain the returned object and releasing right after using:</p>
<pre><code>id options = [[self getOptions] retain];
[options release];
</code></pre>
<p>Basically, from the iphone documentation, i should have it autoreleased on my mutatbe array for filearray, but i am still getting a memory leak, anyone can shed some light on this, would be greatly appreciated.</p>
<p>EDIT:</p>
<p>I just added this to see if it would solve anything, but i am still leaking:</p>
<pre><code>FileManager *file = [[FileManager alloc] initWithFileName:@"optionsFile.dat"];
NSMutableArray *fileArray = [file loadFile: @"optionsFile"];
Options *options = [fileArray objectAtIndex:0];
[file release];
return options;
</code></pre>
http://stackoverflow.com/questions/1774202/not-calling-delegate-endinvoke-can-cause-memory-leak-a-myth8Not calling Delegate.EndInvoke can cause memory leak... a myth?Jeff Cyr2009-11-21T01:35:46Z2009-11-23T15:26:49Z
<p>There have been a lot of discussion around this and everyone tend to agree that you should always call Delegate.EndInvoke to prevent a memory leak (even Jon Skeet said it!).</p>
<p>I always followed this guideline without questioning, but recently I implemented my own AsyncResult class and saw that the only resource that could leak is the AsyncWaitHandle.</p>
<p>(In fact it doesn't really leak because the native resource used by the WaitHandle is encapsulated in a SafeHandle which has a Finalizer, it will add pressure on the finalize queue of the garbage collector though. Even so, a good implementation of AsyncResult will only initialize the AsyncWaitHandle on demand...)</p>
<p>The best way to know if there is a leak is just to try it:</p>
<pre><code>Action a = delegate { };
while (true)
a.BeginInvoke(null, null);
</code></pre>
<p>I ran this for a while and the memory stay between 9-20 MB.</p>
<p>Let's compare with when Delegate.EndInvoke is called:</p>
<pre><code>Action a = delegate { };
while (true)
a.BeginInvoke(ar => a.EndInvoke(ar), null);
</code></pre>
<p>With this test, the memory play between 9-30 MG, weird eh? (Probably because it takes a bit longer to execute when there is an AsyncCallback, so there will be more queued delegate in the ThreadPool)</p>
<p>What do you think... "Myth busted"?</p>
<p>P.S. ThreadPool.QueueUserWorkItem is a hundred more efficient than Delegate.BeginInvoke, its better to use it for fire & forget calls.</p>
http://stackoverflow.com/questions/1782309/iphone-memory-leak-while-displaying-uilabel0iPhone - Memory leak while displaying UILabel.tuttu472009-11-23T10:39:48Z2009-11-23T11:01:26Z
<p>hi,</p>
<p>I am using a simple function to display messages to user through a label. The function is as follows:</p>
<p>-(void) showMessage:(NSString*) message { </p>
<p>Message.text = message;
[message release];
}</p>
<p>There is no memory leak if I call this function from the main thread. But if I call this function from a separate thread, the instruments monitor shows a 16 byte memory leaks as soon as the function is called. The leak is not seen if I comment out the function call. Does anyone know why ? I am using iPhone SDK 3.0. The instruments monitor does not point to any of my functions to indicate the leak. It only shows a function or two from UILabel.</p>
http://stackoverflow.com/questions/1746740/when-process-exit-will-the-memory-thats-left-undeleted-be-returned-to-os1When process exit, will the memory that's left undeleted be returned to OS? Benny2009-11-17T05:13:57Z2009-11-23T03:56:41Z
<p>I am wondering if i new some object but forget to delete it, when the process exit, will the leaked memory be returned to the OS?</p>
http://stackoverflow.com/questions/1752714/memory-profiling-for-java-desktop-application3Memory profiling for Java desktop applicationbguiz2009-11-17T23:55:04Z2009-11-23T00:51:05Z
<p>Hi,</p>
<p>My application loads a data set of approx. 85bm to 100mb each time. The application's memory limit is set to 512mb, and this is, theoretically, more than enough.</p>
<p>However, I found that if, in a single run of the application, I opened and closed the data set 5 times, the total memory consumption steadily increases, until I get an out-of-memory error:</p>
<pre><code> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
6882 bguiz 20 0 679m 206m 19m S 30 13.7 0:30.22 java
6882 bguiz 20 0 679m 259m 19m S 9 17.2 0:55.53 java
6882 bguiz 20 0 679m 301m 19m S 9 20.0 1:20.04 java
6882 bguiz 20 0 679m 357m 19m S 33 23.7 1:44.74 java
6882 bguiz 20 0 679m 395m 19m S 80 26.2 2:10.31 java
</code></pre>
<p>Memory grew from ~14% to ~26%. It looks like a memory leak.</p>
<p>What's happening is that the top level data that is being loaded is used to populate collections such as maps and lists, and then the more detailed data is used to create sub-objects of these top-level objects, and then they in turn create sub-sub-objects.</p>
<p>When the data set is closed, currently the application does indeed make an attempt to clear its tracks by de-populating the various collections of objects, and then explicitly calling <code>System.gc();</code></p>
<p><hr></p>
<p>Anyhow, this is the state of the application when I got to it (several years in the making before me), and I have been assigned this task. </p>
<p>What I need to do, is to find a way to find which sub-objects and sub-sub-objects are still referencing each other after the data set is unloaded, and rectify them.<br>
Obviously this can be done manually, but would be very very tedious, but I felt it would be a much better option to do this by memory profiling, something which I haven't done before.</p>
<p>I have read some other SO questions that asked about which memory profiling tools to use, and I have chosen to go with the one built into Netbeans IDE, since it seemed to have good reviews, and I am working in Netbeans anyway.</p>
<p>Has anyone undertaken a similar Java memory profiling task before, and with hindsight: </p>
<ul>
<li>What specific advice would you give me? </li>
<li>What techniques did you find useful in tackling this problem?</li>
<li>What resources did you find useful in tackling this problem? </li>
</ul>
<p><hr></p>
<p>Edit:
This application is a standard desktop application - not a web application.</p>
<p><hr></p>
<h2>Edit: Implemented solution</h2>
<p><strong>Basically what worked for me was to use Netbeans' profiler in conjunction with JHAT.</strong></p>
<p>I found that the Profiler built into Netbeans IDE did a really good job of creating the memory dumps at particular <strong>profiling points</strong>, and then the tool was able to filter and sort by class and drill down the references for each instance. Which was all really good.</p>
<p>However, it didn't provide me with a means to compare two heap dumps. I asked a <a href="http://stackoverflow.com/questions/1752714/memory-profiling-for-java-desktop-application">follow up question</a>, and it looks like JHAT (comes as part of JDK) gets that job done quite well.</p>
<p>Thorbjørn Ravn Andersen, Dmitry and Jason Gritman: your input was really helpful, unfortunately I can only mark 1 as the correct answer, and all of you got +1 from me anyway.</p>
http://stackoverflow.com/questions/1382608/uiimagewritetosavedphotosalbum-showing-memory-leak-with-iphone-connected-to-instr0UIImageWriteToSavedPhotosAlbum showing memory leak with iPhone connected to Instrumentsunknown (google)2009-09-05T06:09:47Z2009-11-22T23:24:27Z
<p>Hi,</p>
<p>I'm using version 3.0.1 of the SDK.</p>
<p>With the iPhone connected to Instruments I'm getting a memory leak when I call UIImageWriteToSavedPhotosAlbum.</p>
<p>Below is my code:</p>
<pre><code> NSString *gnTmpStr = [NSString stringWithFormat:@"%d", count];
UIImage *ganTmpImage = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:gnTmpStr ofType:@"jpg"]];
// Request to save the image to camera roll
UIImageWriteToSavedPhotosAlbum(ganTmpImage, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil);
</code></pre>
<p>and the selector method</p>
<pre><code> - (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {
NSString *message;
NSString *title;
if (!error)
{
title = @"Wallpaper";
message = @"Wallpaper Saved";
}
else
{
title = @"Error";
message = [error description];
}
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:title
message:message
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
[alert release];
}
</code></pre>
<p>Am I forgetting to release something once the image has been saved and the selector method imageSavedToPhotosAlbum is called? Or is there a possible known issue with UIImageWriteToSavedPhotosAlbum?</p>
<p>Here is the stack trace from Instruments:</p>
<pre>Leaked Object: GeneralBlock-3584
size: 3.50 KB
30 MyApp start
29 MyApp main /Users/user/Desktop/MyApp/main.m:14
28 UIKit UIApplicationMain
27 UIKit -[UIApplication _run]
26 GraphicsServices GSEventRunModal
25 CoreFoundation CFRunLoopRunInMode
24 CoreFoundation CFRunLoopRunSpecific
23 GraphicsServices PurpleEventCallback
22 UIKit _UIApplicationHandleEvent
21 UIKit -[UIApplication sendEvent:]
20 UIKit -[UIWindow sendEvent:]
19 UIKit -[UIWindow _sendTouchesForEvent:]
18 UIKit -[UIControl touchesEnded:withEvent:]
17 UIKit -[UIControl(Internal) _sendActionsForEvents:withEvent:]
16 UIKit -[UIControl sendAction:to:forEvent:]
15 UIKit -[UIApplication sendAction:toTarget:fromSender:forEvent:]
14 UIKit -[UIApplication sendAction:to:from:forEvent:]
13 CoreFoundation -[NSObject performSelector:withObject:withObject:]
12 UIKit -[UIBarButtonItem(Internal) _sendAction:withEvent:]
11 UIKit -[UIApplication sendAction:to:from:forEvent:]
10 CoreFoundation -[NSObject performSelector:withObject:withObject:]
9 MyApp -[FlipsideViewController svPhoto] /Users/user/Desktop/MyApp/Classes/FlipsideViewController.m:218
8 0x317fa528
7 0x317e3628
6 0x317e3730
5 0x317edda4
4 0x3180fc74
3 Foundation +[NSThread detachNewThreadSelector:toTarget:withObject:]
2 Foundation -[NSThread start]
1 libSystem.B.dylib pthread_create
0 libSystem.B.dylib malloc</pre>
<p>I did a test with a new project and only added this code below in the viewDidLoad: </p>
<pre><code>NSString *gnTmpStr = [NSString stringWithFormat:@"DefaultTest"];
UIImage *ganTmpImage = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:gnTmpStr ofType:@"png"]];
// Request to save the image to camera roll
UIImageWriteToSavedPhotosAlbum(ganTmpImage, nil, nil, nil);
</code></pre>
<p>The same leak shows up right after the app loads</p>
<p>Thank you for the help.</p>
<p>Bryan</p>
http://stackoverflow.com/questions/1719267/do-small-memory-leaks-matter-anymore10Do Small Memory Leaks Matter Anymore?lkessler2009-11-12T01:23:35Z2009-11-21T22:37:56Z
<p>With RAM typically in the Gigabytes on all PC's now, should I be spending time hunting down all the small (non-growing) memory leaks that may be in my program? I'm talking about those holes that may be less than 64 bytes, or even a bunch that are just 4 bytes. </p>
<p>Some of these are very difficult to identify because they are not in my own code, but may be in third party code or in the development tool's code, and I may not even have direct access to the source. In those cases, it would involve lengthy communication with the vendors of these products. </p>
<p>I have seen the number one memory leak question here at SO: <a href="http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok">Are memory leaks ever ok?</a> and the number one answer to that, as of now voted up 85 times, is: No.</p>
<p>But here I'm talking about small leaks that may take an inordinate amount of debugging, research and communication to track down.</p>
<p>And I'm only talking about a simple desktop app. I understand that apps running on servers must be as tight as possible.</p>
<p>So the question I am really asking is, if I know I have a program that leaks, say 40 bytes every time it is run, does that matter?</p>
<p><img src="http://www.beholdgenealogy.com/img/single%5Fdrip.jpg" alt="A Single Drip"></p>
<p><hr></p>
<p>Also see my followup question: <a href="http://stackoverflow.com/questions/1720014/what-operating-systems-will-free-the-memory-leaks">What Operating Systems Will Free The Memory Leaks?</a></p>
<p><hr></p>
<p>Postscript: I just purchased <a href="http://www.eurekalog.com/" rel="nofollow">EurekaLog</a> for my program development. </p>
<p>I found <a href="http://blog.eurekalog.com/catching-memory-leaks/" rel="nofollow">an excellent article by Alexander</a>, the author of EurekaLog (who should know these things), about catching memory leaks. In that article, Alexander states the answer to my question very well and succinctly:</p>
<blockquote>
<p>While any error in your application is always bad, there are types of errors, which can be not visible in certain environments. For example, <a href="http://en.wikipedia.org/wiki/Memory%5Fleak" rel="nofollow">memory or resources leaks</a> errors are relatively harmless on client machines and <a href="http://blogs.msdn.com/oldnewthing/archive/2004/03/17/91178.aspx" rel="nofollow">can be deadly on servers</a>.</p>
</blockquote>
http://stackoverflow.com/questions/1431261/comcan-i-call-couninitialize-without-calling-release4COM:Can i call CoUninitialize without calling Release?Manigandan2009-09-16T06:21:34Z2009-11-21T05:24:38Z
<p>Hey Folks,</p>
<p>I have a doubt. I initialize COM, do CoCreateInstance and use some interfaces.Can I call CoUninitialize without calling Release? Does it cause any memory/resource leak?</p>
<p>Thanks in Advance,
-Mani.</p>
http://stackoverflow.com/questions/1767114/linqtosql-insertonsubmit-memory-leak0LinqToSql InsertOnSubmit memory leak?recursive2009-11-19T22:44:52Z2009-11-20T16:25:22Z
<p>I am trying to isolate the source of a "memory leak" in my C# application. This application copies a large number of potentially large files into records in a database using the <code>image</code> column type in SQL Server. I am using a <code>LinqToSql</code> and associated objects for all database access.</p>
<p>The main loop iterates over a list of files and inserts. After removing much boilerplate and error handling, it looks like this:</p>
<pre><code>foreach (Document doc in ImportDocs) {
using (var dc = new DocumentClassesDataContext(connection)) {
byte[] contents = File.ReadAllBytes(doc.FileName);
DocumentSubmission submission = new DocumentSubmission() {
Content = contents,
// other fields
};
dc.DocumentSubmissions.InsertOnSubmit(submission); // (A)
dc.SubmitChanges(); // (B)
}
}
</code></pre>
<p>Running this program over the entire input results in an eventual <code>OutOfMemoryException</code>. CLR Profiler reveals that 99% of the heap consists of large <code>byte[]</code> objects corresponding to the sizes of the files.</p>
<p>If I comment both lines A and B, this leak goes away. If I uncomment only line A, the leak comes back. I don't understand how this is possible, as <code>dc</code> is disposed for every iteration of the loop. </p>
<p>Has anyone encountered this before? I suspect directly calling stored procedures or doing inserts will avoid this leak, but I'd like to understand this before trying something else. What is going on?</p>
<h2>Update</h2>
<p>Including <code>GC.Collect();</code> after line (B) appears to make no significant change to any case. This does not surprise me much, as CLR Profiler was showing a good number of GC events without explicitly inducing them.</p>
http://stackoverflow.com/questions/1761125/gcc-memory-leak-detection-equivalent-to-microsoft-crtdbg-h7GCC memory leak detection equivalent to Microsoft crtdbg.h?Gene Goykhman2009-11-19T05:37:59Z2009-11-20T10:32:41Z
<p>After many years of working on a general-purpose C++ library using the Microsoft MSVC compiler in Visual Studio, we are now porting it to Linux/Mac OS X (pray for us). I have become accustomed and quite fond of the simple memory leak detection mechanism in MSVC:</p>
<pre><code>#ifdef DEBUG
#define _CRTDBG_MAP_ALLOC
#define NEW new( _NORMAL_BLOCK, __FILE__, __LINE__)
#include <stdlib.h>
#include <crtdbg.h>
#else
#define NEW new
#endif
</code></pre>
<p>Every memory allocation is done using this NEW macro. Whenever a process using our library terminates, any memory leaks (blocks that have not been de-allocated) are reported on the console along with the file and line # where the memory was originally allocated.</p>
<p>The part about this that I like is that I don't have to actively "run with performance tool" or otherwise indicate that I am looking for leaks. Leaks are reported to me in the regular course of development, every time a process terminates.</p>
<p>Now that we are moving to the GCC world, I find that the memory leak detection tools, many of which are quite sophisticated, require that I explicitly indicate that I'm in leak hunting mode. My IDE is Xcode and I've looked into some of the allocation/leak detection tools (like Instruments and MallocDebug) but I admit I haven't spent the time to get my head around them fully yet. I keep getting put off by the fact that I actually have to specify that I'm looking for a leak ahead of time, instead of being alerted to it automatically.</p>
<p>I am using Xcode 3.2 and I hear that there's now nifty integration with a static analysis tool, but again I haven't looked into this. I'm looking for some idea of what my options are. Is there a comparable mechanism built into GCC and/or Xcode? Is there a simple third-party library or tool that performs the very basic functionality that I know and love? Or should I suck it up and learn the new way of doing things?</p>
http://stackoverflow.com/questions/1767679/incomplete-type-memory-leaks1Incomplete Type memory leaks?Reggie2009-11-20T00:59:41Z2009-11-20T09:22:44Z
<p>Microsoft Visual Studio 2008 is giving me the following warning:</p>
<p>warning C4150: deletion of pointer to incomplete type 'GLCM::Component'; no destructor called</p>
<p>This is probably because I have defined Handles to forward declared types in several places, so now the Handle class is claiming it won't call the destructor on the given object.</p>
<p>I have VLD running and I'm not seeing any leaks. Is this literally not calling the destructor for this object or is this a "may not call destructor for object" warning?</p>
<p>Yet another memory leak question from me, haha.</p>
http://stackoverflow.com/questions/1767790/asp-net-gridview-memory-leak-with-large-result-set0ASP.Net GridView memory leak with large result set?itchi2009-11-20T01:35:50Z2009-11-20T05:13:22Z
<p>I have a GridView that is bound to an ObjectDataSource that is calling a Business Service object which returns a List<> of POCO's. </p>
<p>Recently my client removed the Page Limit number on the GridView due to their customer's request. This resulted in the GridView displaying over 10K items.</p>
<p>When this page is called we're seeing the ASP.NET process eat up roughly 30MB on each refresh and not letting it go. (eventually the web server throws an out of memory exception)</p>
<p>I'm 100% certain this is not the BSO (I've created a page that calls the BSO 20 times and seen no memory leak). I ran the ANTS Profiler and saw that most of the memory is indeed from the Web UI.</p>
<pre><code><asp:TextBox ID="uxQuery" runat="server" Width="300px" MaxLength="300"></asp:TextBox>
<asp:Button ID="uxSearch" runat="server" Text="Search" OnClick="uxSearch_Click" />
<asp:GridView ID="GridView1" Width="100%" Visible="True" DataSourceID="MyDataSource"
runat="server" AllowSorting="True" AutoGenerateColumns="False"
OnRowDataBound="GridView1_RowDataBound" EnableViewState="False">
<PagerSettings FirstPageText="&lt;&lt;" LastPageText="&gt;&gt;" Mode="NumericFirstLast"
NextPageText="&gt;" PreviousPageText="&lt;"></PagerSettings>
<Columns>
<asp:TemplateField HeaderText="Name" SortExpression="OrganizationName">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" Text='<%# Eval("Name") %>' CommandName="Name"
CommandArgument='<%# Eval("ID") %>'></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="CityName" HeaderText="City" SortExpression="CityName" />
<asp:BoundField DataField="PhoneNumber" HeaderText="Phone" SortExpression="PhoneNumber" />
</Columns>
<HeaderStyle CssClass="MasterHeader" />
<AlternatingRowStyle CssClass="AlternateRow" />
</asp:GridView>
<asp:ObjectDataSource ID="MyDataSource" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetBySearchString" TypeName="BLL.BSO.SummaryBSO"
SortParameterName="sortExpression" EnablePaging="True">
<SelectParameters>
<asp:ControlParameter ControlID="uxQuery" Name="searchString" PropertyName="Text"
Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
</code></pre>
<p>I've talked my client and customer out of this "feature" but I'm still curious why the memory leak exists.</p>
http://stackoverflow.com/questions/1766301/xcode-3-2-1-and-instruments-useless-stack-trace0XCode 3.2.1 and Instruments: Useless Stack TraceJason George2009-11-19T20:30:28Z2009-11-20T05:03:44Z
<p>I've reached the stage where it's time to start tracking down memory leaks and, to my dismay, Instruments is giving me very little to go on (other than the fact that I definitely have leaks). My stack trace contains no information other than memory addresses. </p>
<p><a href="http://www.freeimagehosting.net/image.php?16b2ec8cec.png" rel="nofollow"><img src="http://www.freeimagehosting.net/uploads/th.16b2ec8cec.png"></a></p>
<p>Since I'm working on a new project and I've transitioned to version 3.2.1 of XCode in tandem, I'm not sure if it's my program configuration or XCode that's causing the problem. I have found one reference to the issue coupled with a post on the <code>dyld</code> leak that seems to be prevalent with the 3.2.1 release.</p>
<p>Since I haven't been able to find much on the problem I'm guessing it's something I've created rather than a systematic issue with XCode. If someone has any idea where I might have thrown a wrench in the works, I would love some pointers. Also, if someone could just verify that the stack trace is indeed functioning properly in 3.2.1 that would be useful as well.</p>
http://stackoverflow.com/questions/1765638/memory-leak-in-vb-file-reader0Memory leak in VB file readermikurski2009-11-19T18:46:22Z2009-11-19T23:04:10Z
<p>I'm currently coding a file reader for fixed-width tables in VB, and the compiled application seems to be sucking down memory like there's no tomorrow. I'm working with a series of ~50 megabyte files, but after running through several, the process starts taking up about 200+ megabytes of RAM, which is way more than it should.</p>
<p>I've done some poking around, and I <em>think</em> the issue is the call to NewRow(), but don't take my word for it.</p>
<p>Does anyone have some tips for optimizing this? If the problem's with the NewRow() call, is there a way of clearing this out? </p>
<p>Code follows below:</p>
<pre><code>Function LoadFixedWidthFileToDataTable(ByVal filepath As String, ByRef Colnames() As String, ByRef colwidth() As Integer) As DataTable
Dim filetable As New DataTable
For Each name As String In Colnames
filetable.Columns.Add(name)
Next
Dim loadedfile As StreamReader
Try
loadedfile = New StreamReader(filepath)
Catch io As IOException
MsgBox(io.Message)
Return Nothing
Exit Function
End Try
Dim line As String = loadedfile.ReadLine
Dim filerow As DataRow = filetable.NewRow
Dim i As Integer = 0
While Not loadedfile.EndOfStream
line = loadedfile.ReadLine
filerow = filetable.NewRow
i = 0
For Each colsize As Integer In colwidth
Try
filerow(i) = line.Substring(0, colsize)
line = line.Remove(0, colsize)
Catch ex As ArgumentOutOfRangeException ''If the line doesn't match array params
Exit For
End Try
i = i + 1
Next
filetable.Rows.Add(filerow)
End While
loadedfile.Close()
Return filetable
End Function
</code></pre>
http://stackoverflow.com/questions/1763139/sql-server-memory-usage-high-7gb-page-file-usage-high-7gb-but-cpu-usage-20SQL Server: Memory Usage High (7GB) + Page File Usage High (7GB) but CPU Usage (2% to10%) [closed]Abs2009-11-19T13:02:15Z2009-11-19T14:48:18Z
<p>Hello all,</p>
<p>I am running SQL server with a lot of scripts that update large amounts of data (millions of records on several tables). However, I think there is a memory leak as RAM usage goes to 7.5GB of the possible 8GB - this is on a 8 Core Server. The <strong>Page File</strong> goes to 7.28GB as I think SQL server keeps hogging RAM that I don't think its using.</p>
<p>I really need advice on what can be causing this or how I can troubleshoot this! </p>
<h2>My Setup</h2>
<pre><code>Microsoft Windows Server 2003
Standard 64-bit edition
Service Pack 2
SQL Server 2005
Microsoft SQL Server Management Studio 9.00.4035.00
Microsoft Analysis Services Client Tools 2005.090.4035.00
Operating System 5.2.3790
</code></pre>
<h2>Application and Usage of SQL Server</h2>
<p>I am using SQL server with PHp where I run the scripts and queries via SQLCMD using PHP's exec function.</p>
<p>What can be the possible causes of all this RAM usage and huge Page File?</p>
<p>I hope I have given enough information to try and identify the problem. Let me know if anything else that I should add or try to find out.</p>
<p>Thanks all</p>
http://stackoverflow.com/questions/1747235/weak-event-handler-model-for-use-with-lambdas1Weak event handler model for use with lambdasBenjol2009-11-17T07:49:41Z2009-11-19T14:44:53Z
<p>OK, so this is more of an answer than a question, but after asking <a href="http://stackoverflow.com/questions/371109/garbage-collection-when-using-anonymous-delegates-for-event-handling">this question</a>, and pulling together the various bits from <a href="http://diditwith.net/CommentView,guid,aacdb8ae-7baa-4423-a953-c18c1c7940ab.aspx#commentstart" rel="nofollow">Dustin Campbell</a>, <a href="http://stackoverflow.com/questions/371109/garbage-collection-when-using-anonymous-delegates-for-event-handling/1447619#1447619">Egor</a>, and also one last tip from the '<a href="http://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Brian-Beckman-and-Erik-Meijer-Inside-the-NET-Reactive-Framework-Rx/" rel="nofollow">IObservable/Rx/Reactive framework</a>', I think I've worked out a workable solution for this particular problem. It may be completely superseded by IObservable/Rx/Reactive framework, but only experience will show that.</p>
<p>I've deliberately created a new question, to give me space to explain how I got to this solution, as it may not be immediately obvious.</p>
<p>There are many related questions, most telling you you can't use inline lambdas if you want to be able to detach them later:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1089309/weak-events-in-net">Weak events in .Net?</a></li>
<li><a href="http://stackoverflow.com/questions/859936/unhooking-events-with-lambdas-in-c">Unhooking events with lambdas in C#</a></li>
<li><a href="http://stackoverflow.com/questions/16473/can-using-lambdas-as-event-handlers-cause-a-memory-leak">Can using lambdas as event handlers cause a memory leak?</a></li>
<li><a href="http://stackoverflow.com/questions/805829/how-to-unsubscribe-from-an-event-which-uses-a-lambda-expression">How to unsubscribe from an event which uses a lambda expression?</a></li>
<li><a href="http://stackoverflow.com/questions/183367/unsubscribe-anonymous-method-in-c">Unsubscribe anonymous method in C#</a></li>
</ul>
<p>And it is true that if <em>YOU</em> want to be able to detach them later, you need to keep a reference to your lambda. However, if you just want the event handler to detach itself when your subscriber falls out of scope, this answer is for you.</p>
http://stackoverflow.com/questions/1761415/objective-c-code-not-deallocating-memory0Objective-C code not deallocating memory!David Robles2009-11-19T07:02:59Z2009-11-19T11:00:59Z
<p>I'm trying to learn Objective-C. I almost finished one excercise but it is not deallocating the memory:</p>
<p>This is is what I have:</p>
<pre><code>void PrintPolygonInfo() {
NSLog(@"--------------------");
NSLog(@" PRINT POLYGON INFO");
NSLog(@"--------------------");
NSMutableArray *array = [[NSMutableArray alloc] init];
PolygonShape *p1 = [[PolygonShape alloc] initWithNumberOfSides:4 minimumNumberOfSides:3 maximumNumberOfSides:7];
PolygonShape *p2 = [[PolygonShape alloc] initWithNumberOfSides:6 minimumNumberOfSides:5 maximumNumberOfSides:9];
PolygonShape *p3 = [[PolygonShape alloc] initWithNumberOfSides:12 minimumNumberOfSides:9 maximumNumberOfSides:12];
[array addObject:p1];
[array addObject:p2];
[array addObject:p3];
// Log the descriptions
for (id shape in array) {
NSLog(@"%@", shape);
}
// Test the constraints
for (PolygonShape *shape in array) {
[shape setNumberOfSides:10];
}
[p1 release];
[p2 release];
[p3 release];
}
</code></pre>
<p>This is the dealloc():</p>
<pre><code>- (void) dealloc {
NSLog(@"Deallocated!!!");
[super dealloc];
}
</code></pre>
<p>And this are the results:</p>
<pre><code>2009-11-19 06:58:17.030 Assignment 1B[5441:a0f] --------------------
2009-11-19 06:58:17.030 Assignment 1B[5441:a0f] PRINT POLYGON INFO
2009-11-19 06:58:17.031 Assignment 1B[5441:a0f] --------------------
2009-11-19 06:58:17.031 Assignment 1B[5441:a0f] init: Retain count of 1.
2009-11-19 06:58:17.032 Assignment 1B[5441:a0f] init: Retain count of 1.
2009-11-19 06:58:17.032 Assignment 1B[5441:a0f] init: Retain count of 1.
2009-11-19 06:58:17.033 Assignment 1B[5441:a0f] Hello I am a 4-sided polygon (aka a Square) with angles of 90 degrees (1.570796 radians).
2009-11-19 06:58:17.033 Assignment 1B[5441:a0f] Hello I am a 6-sided polygon (aka a Hexagon) with angles of 120 degrees (2.094395 radians).
2009-11-19 06:58:17.034 Assignment 1B[5441:a0f] Hello I am a 12-sided polygon (aka a Dodecagon) with angles of 150 degrees (2.617994 radians).
2009-11-19 06:58:17.034 Assignment 1B[5441:a0f] Invalid number of sides: 10 is greater than the maximum of 7 allowed
2009-11-19 06:58:17.035 Assignment 1B[5441:a0f] Invalid number of sides: 10 is greater than the maximum of 9 allowed
</code></pre>
<p>As you can see, it is not printing the 'Deallocated!!!" message:</p>
<p>Can anyone tell me what I am doing wrong please?</p>
<p>Thanks in advance</p>