active questions tagged leak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T11:06:22Z http://stackoverflow.com/feeds/tag/leak http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865741/toolstrip-memory-leak 0 ToolStrip memory leak Marcus 2009-12-08T09:19:52Z 2009-12-08T09:19:52Z <p>Hi, I've been having trouble with memory leaks with the SWF-ToolStrip. According to this <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=115600#" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=115600#</a> is has been resolved. But here it seemes not.</p> <p>Anyone know how to resolve this?</p> http://stackoverflow.com/questions/1840343/c-smartpointers-leak-on-self-assign 0 C++ SmartPointers leak on self assign? SorinA. 2009-12-03T14:47:14Z 2009-12-04T01:10:18Z <p>Hello, i have small problem understanding why my smart pointer class is leaking on self assing. If i do something like this</p> <pre><code>SmartPtr sp1(new CSine());//CSine is a class that implements IFunction iterface sp1=sp1; </code></pre> <p>my colleagues told me that my smart pointer leaks. I added some log messages in my smart pointer to track what is going on and a test and reported this:</p> <pre><code>SmartPtr sp1(new CSine()); -&gt;CSine constructor -&gt;RefCounter increment 0-&gt;1 -&gt;RefCounter constructor -&gt;SmartPtr constructor sp1=sp1; -&gt;checks if this.RefCounter == to parameter.RefCounter, if true returns the smart pointer unmodified else modifies the object and returns it with the new values; in this case it returns true and returns the object unchanged. at the end -&gt;SmartPtr destructor -&gt;RefCounter decrement 1-&gt;0 -&gt;RefCounter destructor -&gt;CSine destructor </code></pre> <p>i can't understand why they consider that my smart pointer leaks...any ideas? Thank you in advance!</p> <pre><code>class SmartPtr { private: RefCounter* refCnt; void Clear() { if(!isNull() &amp;&amp; refCnt-&gt;Decr() == 0) delete refCnt; refCnt = 0; }; public: explicit SmartPtr(); explicit SmartPtr(IFunction *pt):refCnt(new RefCounter(pt)){}; SmartPtr(SmartPtr&amp; other) { refCnt = other.refCnt; if (!isNull()) refCnt-&gt;Incr(); }; virtual ~SmartPtr(void){Clear();}; SmartPtr&amp; operator=(SmartPtr&amp; other) { if(other.refCnt != refCnt) { if(!rVar.isNull()) other.refCnt-&gt;Incr(); Clear(); refCnt = other.refCnt; } return *this; }; SmartPtr&amp; operator=(IFunction* _p) { if(!isNull()) { Clear(); } refCnt = new RefCounter(fct); return *this; }; IFunction* operator-&gt;(); const IFunction* operator-&gt;() const; IFunction&amp; operator*(); const IFunction&amp; operator*() const; bool isNull() const { return refCnt == 0; }; inline bool operator==(const int _number) const; inline bool operator!=(const int _number) const; inline bool operator==(IFunction* _other) const; inline bool operator!=(IFunction* _other) const; inline bool operator==(SmartPtr&amp; _other) const; inline bool operator!=(SmartPtr&amp; _other) const; }; class RefCounter { friend class SmartPtr; private: IFunction* p; unsigned c; explicit RefCounter(IFunction* _p):c(0),p(_p) { if(_p != NULL) Incr(); cout&lt;&lt;"RefCounter constructor."&lt;&lt;endl; } virtual ~RefCounter(void) { cout&lt;&lt;"RefCounter destructor."&lt;&lt;endl; if(c == 0) delete p; } unsigned Incr() { ++c; cout&lt;&lt;"RefCounter increment count:"&lt;&lt;c-1&lt;&lt;" to "&lt;&lt;c&lt;&lt;endl; return c; } unsigned Decr() { if(c!=0) { --c; cout&lt;&lt;"RefCounter decrement count:"&lt;&lt;c+1&lt;&lt;" to "&lt;&lt;c&lt;&lt;endl; return c; } else return 0; } }; </code></pre> http://stackoverflow.com/questions/1765351/strange-iphone-sdk-sqlite-memory-leak 0 strange iphone sdk sqlite memory leak Andy 2009-11-19T18:08:57Z 2009-12-03T11:14:31Z <p>Hi guys, I have a very strange memory leak problem, it seems that sqlite3_step is doing some nasty stuff :|</p> <p>I spent almost 4 hours trying to fix this but no luck till now :(</p> <p>Here it is the code:</p> <pre><code>[dbList removeAllObjects]; sqlite3_stmt *statement = nil; const char *sql = "SELECT * FROM dbs ORDER by rowOrder;"; if (sqlite3_prepare_v2(dbHandler, sql, -1, &amp;statement, NULL) == SQLITE_OK) { while (sqlite3_step(statement) == SQLITE_ROW) { DatabaseEntry *entry = [[DatabaseEntry alloc] init]; entry.databaseID = sqlite3_column_int(statement, 0); entry.databaseTitle = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 1)]; entry.databaseProtected = sqlite3_column_int(statement, 3); entry.databaseFileName = [NSString stringWithFormat:@"%s", (char *)sqlite3_column_text(statement, 2)]; entry.databaseOrder = sqlite3_column_double(statement, 4); [dbList addObject:entry]; [entry release]; } } sqlite3_finalize(statement); </code></pre> <p>The problem seems to be with my query, if I remove the "ORDER by rowOrder" part, everything seems to be just fine, also I'm using sqlcipher, and I'm wondering if that might cause this leak ?! </p> <p>Thanks a lot for your attention !!! </p> http://stackoverflow.com/questions/1816832/java-clip-sound-audio-memory-leak-after-closing-with-close 0 Java Clip (Sound / Audio) Memory Leak after closing with close() unknown (google) 2009-11-29T21:28:45Z 2009-11-29T21:49:22Z <p>The following code creates a new audio clip, plays it, sleeps for 3 seconds and then closes it when it is finished playing. Despite the call to close(), I am watching the memory usage of the jvm go up by the size of the sound clip every time the while loop is run.</p> <p>I'm participating in a game coded in java, and am handling the sound. I cannot have the memory i'm using increase everytime a sound is played.</p> <p>What am I missing? </p> <p>Thanks! John</p> <pre><code>import java.io.File; import javax.sound.sampled.*; public class ClipLeak{ public static void main(String[] args) throws Exception{ while(true){ File soundFile = new File("./sound.wav"); AudioInputStream sound = AudioSystem.getAudioInputStream(soundFile); DataLine.Info info = new DataLine.Info(Clip.class, sound.getFormat()); Clip clip = (Clip) AudioSystem.getLine(info); clip.open(sound); sound.close(); clip.addLineListener(new LineListener(){ public void update(LineEvent event){ if(event.getType() == LineEvent.Type.STOP){ event.getLine().close(); } } }); clip.start(); Thread.sleep(2000); } } } </code></pre> http://stackoverflow.com/questions/1250666/iphone-sdk-utility-application-template-has-leak 4 Iphone SDK Utility Application template has leak Hitcurst 2009-08-09T04:50:11Z 2009-11-27T03:12:52Z <p>Hi, i'm only create an project with a Utility Application template. This template has a native memory leak when i push "info button" to flip the view.</p> <p>Anyone know how can i fix this leak ??? I just make an new project from this template, i don't add new objects.</p> http://stackoverflow.com/questions/1454380/how-can-i-prevent-memory-leaks-in-ie-mobile 2 How Can I Prevent Memory Leaks in IE Mobile? Jake Howlett 2009-09-21T12:55:29Z 2009-11-20T00:41:29Z <p>Hi All,</p> <p>I've written an application for use offline (with Google Gears) on devices using IE Mobile. The devices are experiencing memory leaks at such a rate that the device becomes unusable over time.</p> <p>The problem page fetches entries from the local Gears database and renders a table of each entry with a link in the last column of each row to open the entry ( the link is just onclick="open('myID')" ). When they've done with the entry they return to the table, which is RE-rendered. It's the repeated building of this table that appears to be the problem. Mainly the onclick events.</p> <p>The table is generated in essence like this:</p> <pre><code>var tmp=""; for (var i=0; i&lt;100; i++){ tmp+="&lt;tr&gt;&lt;td&gt;row "+i+"&lt;/td&gt;&lt;td&gt;&lt;a href=\"#\" id=\"LINK-"+i+"\""+ " onclick=\"afunction();return false;\"&gt;link&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;"; } document.getElementById('view').innerHTML = "&lt;table&gt;"+tmp+"&lt;/table&gt;"; </code></pre> <p>I've read up on common causes of memory leaks and tried setting the onclick event for each link to "null" before re-rendering the table but it still seems to leak.</p> <p>Anybody got any ideas?</p> <p>In case it matters, the function being called from each link looks like this:</p> <pre><code>function afunction(){ document.getElementById('view').style.display="none"; } </code></pre> <p>Would that constitute a circular reference in any way?</p> <p>Jake</p> http://stackoverflow.com/questions/1750025/app-pool-settings-kill-threads-but-keep-settings 1 app pool settings kill threads but keep settings exige 2009-11-17T16:22:30Z 2009-11-19T17:10:46Z <h2>.net 2.0 aspx app / IIS6 creating a silly number of threads in w3wp.exe process app pool. </h2> <p>The app has been isolated to its own app pool with the following settings:</p> <h2>RECYCLING</h2> <p>recycle worker processses (in minutes) : 870 recycle worker process (no of requests): (not ticked) recycle worker processes at the following times: 00:00 max virtual memory: (not ticked) max used memory (in mb): 1000mb (1gb)</p> <h2>PERFORMANCE</h2> <p>shutdown worker processes after being idle for (time in mins): 20 limit the kernal request queue (number of requests): 1000 enable cpu monitoring (%): 85 refresh cpu usage numbers (in mins): 5 action performed when cpu usage exceeds maximum cpu uses: NO ACTION (keeps sessions) max number of worker processes: 1</p> <h2>HEALTH</h2> <p>enable pinging (checked) ping worker process every (seconds) : 30 enable rapid fail protection (checked) failures: 5 time period (in mins):5 start time limit - worker process must startup within (seconds): 90 shutdown time limit - worker process must shutdown within (seconds): 90</p> <p>Normal running would see the w3wp.exe process utilise 300MB ram and 50 therads. When my problem occurs the thread count slowly increases to 10,000 , ram to 1GB before the threads are knocked back to 0. The w3wp.exe process is NOT shutdown and my users are not logged out (crucially), ie they keep their session and dont have to log back in . Altough the standard 50 threads are killed in amongst the 10, 000 rouge threads. </p> <p>1) Can an expert offer any pros/cons on the above app pool settings ?</p> <p>2) The "max used mem" setting appears to be doing the trick to automatiaclly handle this issue (by killing the threads, keeping the session alive , but can someone explain why ? ... i take it threads are unrelated to the session).</p> <p>The app uses server based sessions but we store a local cookie for authentication.</p> http://stackoverflow.com/questions/1735201/cant-free-memory-of-nsdata-object 0 Can't free memory of NSData object TheNubus 2009-11-14T18:55:36Z 2009-11-18T12:39:14Z <p>Hi,</p> <p>i'm new to xcode / cocoa and even objective-c thus my question might be stupid. Im trying to write a program that will hash files in a folder. I looked around and found a way to load a file via a NSData object and than hash it's bytes with CC_SHA512.</p> <p>If i try to hash a few more files i noticed my memory running out. Using the Run -> Performance Tools i could pinpoint my problem. All NSData Objects i created are still in memory. I tryed autorelease and manualy release with release / dealloc. Nothing is working.</p> <p>My Compiler Settings are standard with one exception i choose Objective-C Garbage Collection = required. </p> <p>Maybe someone can show me what i'm doing wrong.</p> <p>Here is the code:</p> <pre><code>-(FileHash*) hashFileByName :(NSString*) filePath{ //NSData* inputData = [inputStr dataUsingEncoding:NSUTF8StringEncoding]; NSLog(filePath); NSData* inputData = [[NSData dataWithContentsOfFile:filePath] autorelease]; unsigned char outputData[CC_SHA512_DIGEST_LENGTH]; CC_SHA512([inputData bytes], [inputData length], outputData); NSMutableString* hashStr = [NSMutableString string]; int i = 0; for (i = 0; i &lt; CC_SHA512_DIGEST_LENGTH; ++i) [hashStr appendFormat:@"%02x", outputData[i]]; //NSLog(@"%@ hash : %@",filePath,hashStr); FileHash *hash = [[[FileHash alloc]init]autorelease]; [hash setFileHash:hashStr]; [hash setFilePath:filePath]; [inputdata release]; [inputdata dealloc]; return hash; } -(NSMutableArray*) hashFilesInDirectory:(NSString*) pathToDirectory:(Boolean) recursive : (IBOutlet id) Status : (Boolean*) BreakOperation{ NSGarbageCollector *collect = [NSGarbageCollector defaultCollector]; NSMutableArray *files; files = [[self listFilesOnlyRecursive:pathToDirectory] autorelease]; NSMutableArray *hashes = [[[NSMutableArray alloc]init]autorelease]; for (NSString *file in files) { [hashes addObject: [self hashFileByName:file]]; [collect collectExhaustively]; } return hashes; } -(NSMutableArray*) listFilesOnlyRecursive : (NSString*) startDir { NSMutableArray *filelist = [[[NSMutableArray alloc] init]autorelease]; //Inhalt eines Verzeichnisses auflisten (unterverzeichnisse werden ignoriert NSFileManager *manager = [[NSFileManager defaultManager]autorelease]; NSDirectoryEnumerator *enumerator = [manager enumeratorAtPath:startDir]; int count = 0; id file; while (file = [enumerator nextObject]) { // file = [[[[startDir stringByAppendingString:@"/"]autorelease] stringByAppendingString:file] autorelease // ]; file = [NSString stringWithFormat:@"%@/%@",startDir,file]; BOOL isDirectory=NO; [[NSFileManager defaultManager] fileExistsAtPath:file isDirectory:&amp;isDirectory]; if (!isDirectory){ [filelist addObject:file]; //printf("\n:%s:\n",[file UTF8String]); count++; } } NSLog(@"Es waren %i files",count); return filelist; } </code></pre> <p>All of this is started by </p> <pre><code>int main(int argc, char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; //return NSApplicationMain(argc, (const char **) argv); MemoryLeakTest *test = [[[MemoryLeakTest alloc]init]autorelease]; [test hashFilesInDirectory:@"/huge directory/" :YES :nil :nil]; [pool drain]; [pool release]; [pool dealloc]; } </code></pre> <p>Maybe someone has an idea.</p> <p>Than You in advance :) Nubus</p> http://stackoverflow.com/questions/1735344/why-does-my-simple-glx-app-leak-memory 1 Why does my simple GLX app leak memory? dicroce 2009-11-14T19:33:51Z 2009-11-15T03:26:00Z <p>The code below shows a small 48 byte leak in valgrind.</p> <pre><code>#include &lt;X11/Xlib.h&gt; #include &lt;GL/glx.h&gt; #include &lt;unistd.h&gt; int main( int argc, char* argv[] ) { Display* _display; Window _windowHandle; XVisualInfo* _visual; GLXContext _context; Atom _deleteWindowMessage; Atom _pingWindowMessage; _display = XOpenDisplay( NULL ); int attributes[] = { GLX_RGBA, GLX_DOUBLEBUFFER, GLX_RED_SIZE, 8, GLX_BLUE_SIZE, 8, GLX_GREEN_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DEPTH_SIZE, 8, GLX_STENCIL_SIZE, 0, 0 }; _visual = glXChooseVisual( _display, DefaultScreen( _display ), attributes ); _context = glXCreateContext( _display, _visual, 0, GL_TRUE ); Colormap colormap; colormap = XCreateColormap( _display, RootWindow( _display, _visual-&gt;screen ), _visual-&gt;visual, AllocNone ); XSetWindowAttributes windowAttributes; windowAttributes.colormap = colormap; windowAttributes.border_pixel = 0; windowAttributes.event_mask = ExposureMask | StructureNotifyMask; _windowHandle = XCreateWindow( _display, RootWindow( _display, _visual-&gt;screen ), 0, 0, 1280, 720, 0, // Borderwidth _visual-&gt;depth, // Depth InputOutput, _visual-&gt;visual, CWBorderPixel | CWColormap | CWEventMask, &amp;windowAttributes ); XFreeColormap( _display, colormap ); XMapWindow( _display, _windowHandle ); // causes 48 byte leak... glXMakeCurrent( _display, _windowHandle, _context ); sleep( 3 ); XUnmapWindow( _display, _windowHandle ); XDestroyWindow( _display, _windowHandle ); glXMakeCurrent( _display, None, NULL ); glXDestroyContext( _display, _context ); XFree( _visual ); XCloseDisplay( _display ); return 0; } </code></pre> <p>All this code does is initialize a window for GLX rendering and then tear it down. The funny thing, is that as soon as I call glXMakeCurrent(), I leak 48 bytes... The valgrind output looks like this:</p> <pre><code>[developer@localhost ~]$ valgrind --tool=memcheck --leak-check=full ./simplex ==9531== Memcheck, a memory error detector ==9531== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al. ==9531== Using Valgrind-3.5.0 and LibVEX; rerun with -h for copyright info ==9531== Command: ./simplex ==9531== ==9531== ==9531== HEAP SUMMARY: ==9531== in use at exit: 248 bytes in 6 blocks ==9531== total heap usage: 1,265 allocs, 1,259 frees, 2,581,764 bytes allocated ==9531== ==9531== 48 bytes in 1 blocks are definitely lost in loss record 5 of 6 ==9531== at 0x400591C: malloc (vg_replace_malloc.c:195) ==9531== by 0x349D0F8: ??? (in /usr/lib/nvidia/libGL.so.180.60) ==9531== ==9531== LEAK SUMMARY: ==9531== definitely lost: 48 bytes in 1 blocks ==9531== indirectly lost: 0 bytes in 0 blocks ==9531== possibly lost: 0 bytes in 0 blocks ==9531== still reachable: 200 bytes in 5 blocks ==9531== suppressed: 0 bytes in 0 blocks ==9531== Reachable blocks (those to which a pointer was found) are not shown. ==9531== To see them, rerun with: --leak-check=full --show-reachable=yes ==9531== ==9531== For counts of detected and suppressed errors, rerun with: -v ==9531== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 30 from 8) </code></pre> <p>If you comment out the call to glXMakeCurrent() right before the sleep, the leak will go away... Of course, I need to make that call in order to render anything!</p> <p>The real problem is that my app creates many child windows, each with GLX contexts associated... and each leaks this same 48 bytes... I don't know what else to try (the code is cleaning up the GLX context)... Any ideas?</p> http://stackoverflow.com/questions/1541476/how-to-ensure-no-memory-leak-for-objective-c-class-that-is-called-by-many-other-c 0 How to ensure no memory leak for Objective-C class that is called by many other class. Andrew Sky 2009-10-09T02:00:35Z 2009-11-14T23:00:02Z <p>I have the following controller class which will do different tasks based on combination of the flag and param property. The value of these two properties will be set by many other classes having a reference to this controller. The question is how does each of the calling class assign value and when should they release it so that there will be no memory leak ? </p> <p>@interface SampleController { NSMutableArray *param; NSString *flag; } @property (nonatomic, retain) NSMutableArray *param; @property (nonatomic, retain) NSString *flag; @end</p> <p>@implementation SampleController @synthesize param; @synthesize flag;</p> <ul> <li>(id)init { param = [[NSMutableArray alloc] initWithCapacity:0]; flag = @"nothing"; } @end</li> </ul> http://stackoverflow.com/questions/1719870/is-there-a-freeware-utility-out-there-to-monitor-a-c-application-for-memory-lea 1 Is there a freeware utility out there to monitor a c++ application for memory leaks? nanay 2009-11-12T04:25:09Z 2009-11-12T05:30:03Z <p>I am verifying an application coded in c++ with memory leak and need a utility (freeware) I can easily run to detect where it is ocurring. any ideas?</p> http://stackoverflow.com/questions/1719020/memory-leak-form-not-being-garbage-collected 0 Memory Leak / Form not being garbage collected. Gregory 2009-11-12T00:20:25Z 2009-11-12T03:31:23Z <p>I'm tracking down a Memory leak within an MDI application. Opening, and then closing the form results in the form staying in memory. Using Ant's memory profiler, I can get the following graph of references keeping the form in memory.</p> <p>I have removed any and all events we attach to the combo controls when Dispose fires on the form.</p> <p>Can anyone direct me towards a solution?</p> <p>The C1 namespace comes from ComponentOne.</p> <p>I should note that I have attempted to see what the c, r, b etc methods on the C1Combo control are via reflector, but its obviously been run through an obfusticator which makes things difficult to understand.</p> <p><img src="http://imgur.com/HH4Qj.png" alt="Ant's Reference Graph"></p> http://stackoverflow.com/questions/1334463/wpf-writeablebitmap-memory-leak 0 WPF WriteableBitmap Memory Leak? Mario 2009-08-26T12:52:38Z 2009-11-08T10:57:12Z <p>Hello, everyone!</p> <p>I'm trying to figure out how to release a WriteableBitmap memory.</p> <p>In the next section of code I fill the backbuffer of a WriteableBitmap with a really large amount of data from "BigImage" (3600 * 4800 px, just for testing) If I comment the lines where bitmap and image are equaled to null, the memory it´s not release and the application consumes ~230 MB, even when Image and bitmap are no longer used!</p> <p>As you can see at the end of the code its necessary to call GC.Collect() to release the memory.</p> <p>So the question is, what is the right way to free the memory used by a WriteableBitmap object? Is GC.Collect() the only way?</p> <p>Any help would be great.</p> <p>PS. Sorry for my bad english.</p> <pre><code>private void buttonTest_Click(object sender, RoutedEventArgs e) { Image image = new Image(); image.Source = new BitmapImage(new Uri("BigImage")); WriteableBitmap bitmap = new WriteableBitmap( (BitmapSource)image.Source); bitmap.Lock(); // Bitmap processing bitmap.Unlock(); image = null; bitmap = null; GC.Collect(); } </code></pre> http://stackoverflow.com/questions/1658328/sizewithfont-memory-leak-in-iphone 0 sizeWithFont memory leak in iphone Zheng 2009-11-01T21:08:51Z 2009-11-03T17:38:55Z <p>I have this code:</p> <pre><code>[[data objectForKey:[keys objectAtIndex:0]] sizeWithFont:[UIFont systemFontOfSize:12] constrainedToSize:CGSizeMake(276.0, 1000.0) lineBreakMode:UILineBreakModeTailTruncation]; </code></pre> <p>data is a NSDictionary. </p> <p>It is said this code has 16 bytes leak, but I cant find it.</p> <p>Help</p> http://stackoverflow.com/questions/1384050/media-player-mpmediaitemartwork-memory-leak 0 Media Player MPMediaItemArtwork Memory Leak dev 2009-09-05T19:08:50Z 2009-10-31T03:00:03Z <p>Hello,</p> <p>I seem to be getting a memory leak when getting the album artwork for the currently playing item with this code:</p> <pre><code>MPMediaItem *playingItem = self.musicPlayer.nowPlayingItem; MPMediaItemArtwork *artwork = [playingItem valueForProperty:MPMediaItemPropertyArtwork]; </code></pre> <p>I have tried [artwork release]; even though I didn't alloc artwork but I am still getting a leak. Any Ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1623687/os-api-allocates-members-in-struct-free-just-the-struct-or-every-member-first 2 OS API allocates members in struct. Free just the struct or every member first? Kate 2009-10-26T08:40:46Z 2009-10-26T09:12:58Z <p>Let's say we have an array of <a href="http://msdn.microsoft.com/en-us/library/dd162845%28VS.85%29.aspx" rel="nofollow"><code>PRINTER_INFO_2</code></a> like this:</p> <pre><code>PRINTER_INFO_2* printers = (PRINTER_INFO_2*)malloc(sizeof(PRINTER_INFO_2) * 64); // room for 64 items </code></pre> <p>Then we call <code>EnumPrinters()</code> to get a list of locally installed printers:</p> <pre><code>EnumPrinters( PRINTER_ENUM_LOCAL, NULL, 2, (LPBYTE)printers, ...); </code></pre> <p>Here's the structure info for <a href="http://msdn.microsoft.com/en-us/library/dd162845%28VS.85%29.aspx" rel="nofollow"><code>PRINTER_INFO_2</code></a>. Now, the string members are of type LPTSTR, so they are not stored inside of the struct itself.</p> <p>What I am wondering about now, is if I can simply call <code>free(printers)</code> when I'm done with it, or will that result in a memory leak (all those strings not being freed)?</p> <p>Will I have to call <code>free()</code> on every string member, like below? </p> <pre><code>free(printers[i].pServerName); free(printers[i].pPrinterName); free(printers[i].pShareName); ... free(printers); </code></pre> <p>Seems awfully complicated to me this way. Especially if the struct has many, many members that needs to be freed.<br /> Is there a better way to do this?</p> <p>Thanks for helping me out with this!</p> http://stackoverflow.com/questions/1584597/java-deque-prepared-statement-memory-leak 0 Java deque / prepared statement memory leak. Peeter 2009-10-18T10:59:29Z 2009-10-18T12:13:44Z <p>One of the following pieces of code generates a memory leak, any idea which part?</p> <p>1)</p> <pre><code>private Deque&lt;Snapshot&gt; snapshots = new LinkedList&lt;Snapshot&gt;(); Iterator&lt;Snapshot&gt; i = world.getSnapshots().descendingIterator(); while (i.hasNext()) { Snapshot s = i.next(); if (curTime - s.getTimestamp() &gt; 60000) { i.remove(); } else { break; } } </code></pre> <p>2)</p> <pre><code>public static void initilizePreparedStatements() { try { insertNewReportRow = Instance.getWorld().getDB().getConnection().prepareStatement("INSERT INTO `rsca2_reports` (`from`, `about`, `time`, `reason`, `snapshot_from`,`snapshot_about`,`chatlogs`, `from_x`, `from_y`, `about_x`, `about_y`) VALUES(?,?,?,?,?,?,?,?,?,?,?)"); } catch (SQLException e) { e.printStackTrace(); Logger.error(e); } } public synchronized static void submitReport() { /*removed*/ try { insertNewReportRow.setLong(1, from); insertNewReportRow.setLong(2, about); insertNewReportRow.setLong(3, time); insertNewReportRow.setInt(4, reason); insertNewReportRow.setString(5, snapshot_from); insertNewReportRow.setString(6, snapshot_about); insertNewReportRow.setString(7, chatlog); insertNewReportRow.setInt(8, f.getX()); insertNewReportRow.setInt(9, f.getY()); insertNewReportRow.setInt(10, a.getX()); insertNewReportRow.setInt(11, a.getY()); insertNewReportRow.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); Logger.error(e); } } </code></pre> http://stackoverflow.com/questions/1502799/memory-leak-tool-for-c-under-windows 4 Memory leak tool for C++ under Windows Roman 2009-10-01T09:03:03Z 2009-10-08T16:48:45Z <p>I need a recommendation of a free tool (even for a trial) for detecting memory leaks in C++ under Windows (Visual Studio 2005).</p> <p>I've looked in the net, but I would prefer a recommendation.</p> http://stackoverflow.com/questions/1502694/adobe-air-weird-framerate-memory-issue-maybe-startatlogin-issue 0 Adobe AIR - Weird Framerate / Memory Issue (Maybe startAtLogin issue? ) Bobby 2009-10-01T08:44:07Z 2009-10-01T14:52:31Z <p>Hi All,</p> <p>I am creating a slideshow application where it loads all the slide data from xml and external images / text files and dynamically creates the slides.</p> <p>The problem that I am having is that when I test the app on my machine it works perfectly fine, every time, however when I place them in the clients machines (the presentation is going to be shown across multiple tv screens across the work place) it starts to get weird. It works perfectly if i start the app normally, i.e. clicking its icon etc etc however it should always start on login, but when it does the memory usage increases 10 fold while the frame rate drops considerably from the 30 fps which I need it to run at, to a mere 4fps.</p> <p>Can anyone help? This has been bugging me for days!</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1379564/c-tiny-memory-leak-with-stdmap 0 C++: tiny memory leak with std::map Bill Kotsias 2009-09-04T14:20:13Z 2009-09-28T15:16:31Z <p>I am writing a custom textfile-data parser (JSON-like) and I have lost many hours trying to find a tiny memory leak in it.</p> <p>I am using VC++2008 and the commands _CrtMemCheckpoint and _CrtDumpMemoryLeaks to check for memory leaks.</p> <p>When I parse any file and then remove it from memory (alongside any other memory claimed), I get a 16 bytes memory leak which looks like this :</p> <pre><code>{290} normal block at 0x00486AF0, 16 bytes long. Data: &lt; H `aH hH eH &gt; C0 9A 48 00 60 61 48 00 18 68 48 00 D8 65 48 00 </code></pre> <p>I have managed to narrow the "offending" line of code down to this :</p> <pre><code>classDefinitions[FastStr(cString)] = classDef; </code></pre> <p><strong>classDefinitions</strong> is an <code>std::map&lt;FastStr, FSLClassDefinition*&gt;</code> and is a private member of my parser class.</p> <p>FastStr is a simple char* "wrapper" for allowing simple c-strings as key values; it has no memory leaks (no 'new' commands). 'FSLClassDefinition*' is obviously a simple class pointer, so nothing strange there either.</p> <p>Now here is the catch :</p> <ol> <li>this line is executed many times during the parse-process, but I only get a single 16-bytes block leaked.</li> <li>if I parse another file, there is not another 16-bytes memory leak</li> <li>If I remove the parser from memory (by having it in a {} code-block), then recreate it in another code-block and have it parse another file, then I get a <strong>second</strong> 16-bytes memory leak.</li> </ol> <p>This leads me to suspect that there is a memory leak in std::map; but it could also be my mistake... I am pretty sure that's the offending line because if I stop the parsing <em>before</em> it, there is no memory leak; there <strong>is</strong> memory leak if I stop the parsing just <em>after</em> this line.</p> <p>Can anyone comment on this?</p> http://stackoverflow.com/questions/1414072/tomcat-threadwithattributes-causing-memory-leak 0 Tomcat ThreadWithAttributes causing Memory Leak Adnan Memon 2009-09-12T02:29:18Z 2009-09-24T21:07:47Z <p>I have out of memory issues with following environment:</p> <p>Tomcat 5.1.23 Using XFire WebServices Framework JDK 1.5</p> <p>Used YourKit to profile it and found out multiple instances of class org.apache.tomcat.util.threads.ThreadWithAttributes has huge ArrayList object (Stack Local) with java.lang.Object array containing duplicate string.</p> <p>Following are some screenshots. </p> <p>Any idea why ThreadWithAttributes hold references to such ArrayList objects and those strings seem to be input to software deployed in tomcat?</p> <p>Does it have to do something with known memory leak issue with tomcat?</p> <p><a href="http://gallery.me.com/memon.adnan#100026/Screen-20shot-202009-09-11-20at-208-55-27-20AM&amp;bgcolor=black" rel="nofollow">Screenshot 1</a></p> <p><a href="http://gallery.me.com/memon.adnan#100026/Screen-20shot-202009-09-11-20at-203-43-10-20PM&amp;bgcolor=black" rel="nofollow">Screenshot 2</a> </p> http://stackoverflow.com/questions/1473510/general-strategy-to-resolve-java-memory-leak 2 General strategy to resolve Java memory leak? erotsppa 2009-09-24T18:51:28Z 2009-09-24T20:49:45Z <p>I have a standalone program that I run locally, it is meant to be a server type program running 24/7. Recently I found that it has a memory leak, right now our only solution is to restart it every 4 hours. What is the best way to go about finding this memory leak? Which tool and method should we use? </p> http://stackoverflow.com/questions/1473052/iphone-memory-leak-with-uitableview-and-sqlite 0 iphone memory leak with uitableview and sqlite GL 2009-09-24T17:20:19Z 2009-09-24T17:28:00Z <p>Hi All,</p> <p>I am having a problem with what I believe is a memory leak which after some time is causing my app to slow down. I have a sectioned uitableview that has sections of 'movie directors' with rows of thier movies in their particular section. To do this I am calling a data object (and passing it the section header) to return that section's data and populate the section rows. So I am calling that object a few times on the same view(numberOfRowsInSection, cellForRowAtIndexPath, and didSelectRowAtIndexPath) this happens for each section. Looking at Instruments, I believe the leak is coming from getDirectorsMovies:theDirector from Movies.m. Can anyone tell me what I am doing that is causing this leak. Any help would be greatly appreciated, I've been working on this for a few weeks. Below is some code to show what I am doing.</p> <p>Thanks in advance!!!</p> <pre><code> //Movies.h #import &lt;Foundation/Foundation.h&gt; #import &lt;sqlite3.h&gt; #import "Movie.h" @interface Movies : NSObject { } - (NSMutableArray *) getDirectorsMovies:(NSString *)theDirector; @end //Movies.m //getDirectorsMovies:(NSString *)theDirector goes to the database, gets the directors movies, and returns them in an array #import "Movies.h" @implementation Movies - (NSMutableArray *) getDirectorsMovies:(NSString *)theDirector { sqlite3 *database; NSString *databaseName = @"Movies.sql"; NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDir = [documentPaths objectAtIndex:0]; NSString *databasePath = [documentsDir stringByAppendingPathComponent:databaseName]; NSMutableArray *theDirectorsMovies = [[NSMutableArray alloc] init]; if(sqlite3_open([databasePath UTF8String], &amp;database) == SQLITE_OK) { const char *sqlStatement = "select * from movies where lastname = ? order by lastname, movie"; sqlite3_stmt *compiledStatement; if(sqlite3_prepare_v2(database, sqlStatement, -1, &amp;compiledStatement, NULL) == SQLITE_OK) { sqlite3_bind_text(compiledStatement, 1, [theDirector UTF8String], -1, SQLITE_TRANSIENT); while(sqlite3_step(compiledStatement) == SQLITE_ROW) { NSString *aLastName = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)]; NSString *aDirector = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)]; NSString *aMovie = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 3)]; Movie *movie = [[Movie alloc] initWithName:aMovie lastname:aLastName director:aDirector]; [theDirectorsMovies addObject:movie]; [movie release]; } } sqlite3_finalize(compiledStatement); } sqlite3_close(database); return theDirectorsMovies; [theDirectorsMovies release]; } @end </code></pre> <p>//Calling getDirectorsMovies:(NSString *)theDirector</p> <pre><code>MoviesAppDelegate *appDelegate = (MoviesAppDelegate *)[[UIApplication sharedApplication] delegate]; Director *director = (Director *)[appDelegate.director objectAtIndex:indexPath.section];//appDelegate.director IS A MSMutableArray defined in the AppDelegate self.theMovies = nil;//THIS IS A MSMutableArray defined in the AppDelegate Movies *directorMovies = [[Movies alloc] init]; self.theMovies = [directorMovies getDirectorMovies:director.lastname]; [directorMovies release]; Movie *movie = (Movie *)[theMovies objectAtIndex:indexPath.row]; //do whatever with the data [movie release]; </code></pre> http://stackoverflow.com/questions/1236789/iphone-memory-usage 0 iphone memory usage Edward An 2009-08-06T03:10:06Z 2009-09-20T00:00:00Z <p>After running with the memory analyzer, my app seems to increase its memory consumption very slowly.</p> <p>The analyzer did detect memory leaks whenever certain events occur, which i quickly fixed. But this slow consumption of memory is occuring when im not doing anything in the app. The app basically just starts. Consumption is more noticeable when I touch an object and move it about.</p> <p>Is there an undetectable leak in my app or is this normal behavior (perhaps of internal framework libraries)?</p> <p>Thanks</p> http://stackoverflow.com/questions/1234431/memory-leak-not-seeing-stacktrace-in-instruments 0 [Memory leak] - Not seeing stacktrace in Instruments Jugs 2009-08-05T16:48:48Z 2009-09-19T02:00:03Z <p>Hey Guys,</p> <p>I am using Instruments to find memory leaks in my iPhone application. I saw a few leaks in the application however the extended details view is not showing the stacktrace. It just says "No stack trace available for this block".</p> <p>I am sure I have missed some settings which resulted in this behavior. Any help would be greatly appreciated!</p> <p>Thanks Jugs</p> http://stackoverflow.com/questions/1434714/another-iphone-cgbitmapcontextcreateimage-leak 0 Another iPhone - CGBitmapContextCreateImage Leak Shawn 2009-09-16T18:32:59Z 2009-09-17T20:25:39Z <p>Like in this post:</p> <ul> <li><a href="http://stackoverflow.com/questions/1430201/iphone-uiimage-leak-objectalloc-building">iPhone - UIImage Leak, ObjectAlloc Building</a></li> </ul> <p>I'm having a similar problem. The pointer from the malloc in <code>create_bitmap_data_provider</code> is never freed. I've verified that the associated image object is eventually released, just not the provider's allocation. Should I explicitly create a data provider and somehow manage it's memory? Seems like a hack.</p> <pre><code>CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); CGContextRef context = CGBitmapContextCreate(NULL, blah blah blah); CGColorSpaceRelease(colorSpace); // ... draw into context CGImageRef imageRef = CGBitmapContextCreateImage(context); UIImage * image = [[UIImage alloc] initWithCGImage:imageRef]; CGImageRelease(imageRef); CGContextRelease(context); </code></pre> <p><hr /></p> <p>After fbrereto's answer below, I changed the code to this:</p> <pre><code>- (UIImage *)modifiedImage { CGSize size = CGSizeMake(width, height); UIGraphicsBeginImageContext(size); CGContextRef context = UIGraphicsGetCurrentContext(); // draw into context UIImage * image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return image; // image retainCount = 1 } // caller: { UIImage * image = [self modifiedImage]; _imageView.image = image; // image retainCount = 2 } // after caller done, image retainCount = 1, autoreleased object lost its scope </code></pre> <p>Unfortunately, this still exhibits the same issue with a side effect of flipping the image horizontally. It appears to do the same thing with CGBitmapContextCreateImage internally. </p> <p>I have verified my object's <code>dealloc</code> is called. The retainCount on the <code>_imageView.image</code> and the <code>_imageView</code> are both 1 before I release the <code>_imageView</code>. This really doesn't make sense. Others seem to have this issue as well, I'm the last one to suspect the SDK, but could there be an iPhone SDK bug here???</p> http://stackoverflow.com/questions/1377849/lucene-net-2-3-2-1-memory-leakages-problem 0 "Lucene.net-2.3.2.1” memory leakages problem Ashish 2009-09-04T08:05:42Z 2009-09-04T08:12:19Z <p>Dear All,</p> <p>I am using Lucene.Net-2.3.2.1 in my project. My project also supporting multithreading environment. Lucene Indexing service is working as Windows Service. <strong>Problem</strong> is when the service is running, it's memory blockage is gradually increasing. So after some hours, it shows a memory of 150 mb in Task Manager where as it start with 13 mb.so it has <strong>a memory increasing</strong> behavior. I identified by dotTrace Profiler that in <strong>Lucene.Net</strong> there are some methods and objects that increased the memory. From Call Tree one of my dotTrace out identify that <strong>Index(), Segment()</strong> related functions hold's memory increased as long as the service perform. So it at a time, it will crash the system.</p> <p>Please help me how i can recover my application from this memory leakage. </p> http://stackoverflow.com/questions/1339422/net-memory-leak 1 .net memory leak? SA 2009-08-27T07:35:03Z 2009-08-27T17:14:48Z <p>I have an MDI which has a child form. The child form has a datagridview in it. I load huge amount of data in the datagrid view. When I close the child form the disposing method is called in which I dispose the datagridview </p> <p>this.dataGrid.Dispose(); this.dataGrid = null;</p> <p>When i close the form the memory doesnt go down. I use the .net mem profiler to track the memory usage. I see that the memory usage goes high when i initially load the data grid (as expected) and then becomes constant when the loading is complete. When i close the form it still remains constant however when i take snapshot of the memory using the mem profiler, it down to what it was before loading the file. Taking memory snapshot causes it to forcelly run garbage collector.</p> <p>Any idea what is going on is there a memory leak or do i need to run garbage collector forcefully? Any help is much appreciated.</p> <ul> <li>More info</li> </ul> <p>When i am closing the form i no longer need the information that is why I am not holding a reference to the data.</p> http://stackoverflow.com/questions/1267173/how-do-i-find-resource-leaks-in-win32 0 How do I find resource leaks in Win32? RED SOFT ADAIR-StefanWoe 2009-08-12T16:13:20Z 2009-08-12T18:49:27Z <p>After running some hours my application fails in creating a new font object:</p> <p>CreateFontIndirect() returns NULL.</p> <p>I know how to find memory leaks (i.e. using parallel inspector or another profiler - most of them include leak detection). But how can i locate a ressource leak in Win32?</p> http://stackoverflow.com/questions/1263599/gdi-leaks-memory-when-deleting-pointers-as-gdiplusbase-c 0 GDI+ leaks memory when deleting pointers as GdiplusBase*? (C++) GRB 2009-08-11T23:58:10Z 2009-08-12T00:07:21Z <p>Hi all, I'm trying to work with GDI+ and I'm running into a weird memory leak. I have a <code>vector</code> of <code>GdiplusBase</code> pointers, all of them dynamically created. The odd thing is, though, is that if I try to delete the objects as <code>GdiplusBase</code> pointers, e.g.</p> <pre><code>vector&lt;GdiplusBase*&gt; gdiplus; gdiplus.push_back(new Image(L"filename.jpg")); delete gdiplus[0]; </code></pre> <p>The object is not deleted and memory leaks (according to Task Manager). However, if I cast back to the original pointer and then delete,</p> <pre><code>delete (Image*)gdiplus[0]; </code></pre> <p>The object is correctly deleted. The strange this about this, as far as I can tell, is that (according to MSDN) <a href="http://msdn.microsoft.com/en-us/library/ms534451%28VS.85%29.aspx" rel="nofollow"><code>GdiplusBase</code> is the base class of all GDI+ objects and owns the delete operators for all of them</a>. In that case, shouldn't <code>delete gdiplus[0];</code> work correctly and free the memory? Am I doing anything wrong here?</p> <p>Thanks in advance</p>