The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: Faiseur on June 15, 2005, 04:51:21 PM

Title: Memory leak with BitmapFromPicture
Post by: Faiseur on June 15, 2005, 04:51:21 PM
Hello,

This library is used by BitmapFromResource, BitmapFromFile and BitmapFromMemory.


BitmapFromPicture does not release the dc called by GetDC:


    invoke GetDC, NULL          ; screen DC


To correct I added, to end procedure:


invoke ReleaseDC,NULL,compDC ; <-- added
mov eax, tempBitmap     ; the bitmap handle is the return value
ret   



Regards,

Faiseur




Title: Re: Memory leak with BitmapFromPicture
Post by: QvasiModo on June 15, 2005, 10:21:23 PM
That bug is actually older than this forum :eek I wonder what's it still doing there.
Title: Re: Memory leak with BitmapFromPicture
Post by: hutch-- on June 16, 2005, 01:00:04 AM
Its waiting for its author to fix it, I did not write it.
Title: Re: Memory leak with BitmapFromPicture
Post by: Vortex on June 16, 2005, 10:08:41 AM
Hi Faiseur,

Thanks for informing us about the bug. I am using Ernie's library.