vote up 0 vote down star

After running some hours my application fails in creating a new font object:

CreateFontIndirect() returns NULL.

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?

flag

55% accept rate
First confirm you have a GDI handle leak - look at the GDI Handles column in Task Manager. – Michael Aug 12 at 16:27

3 Answers

vote up 2 vote down check

Grab yourself a copy of GDI View - this useful tool can show all the GDI objects used by your app, including details on the font name, size, etc. This has proved very handy in the past.

For Win32 apps you might want to look at the WTL framework - this wraps GDI objects with lightweight C++ classes that will handle object deletion for you.

link|flag
Yes, this seems a very good tool. Amazingly tiny. A zip of only 50kB. Thanks. – RED SOFT ADAIR-StefanWoe Aug 13 at 15:08
vote up 4 vote down

It looks like the MSDN article Resource Leaks: Detecting, Locating, and Repairing Your Leaky GDI Code might provide you with an answer.

link|flag
Well the article is good. But the tool mentioned is not linked - i cant find it anywhere. – RED SOFT ADAIR-StefanWoe Aug 13 at 15:16
vote up 3 vote down

If you have BoundsChecker, it tracks resource leaks in addition to memory leaks.

link|flag
Thanks for the tip - i have BoundsChecker and it once was the best tool ever. The quality though continuously decreased since our first license (about 15 Years ago), most specifically, since compuware acquired BoundsChecker. It just terminates immediately after start and recently it stopped my whole x64 System. Compuware DevPartner (the successor of BoundsChecker) is by the way still unable to analyze 64-Bit software. – RED SOFT ADAIR-StefanWoe Aug 13 at 15:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.