Search found 3 matches

by kiryushinm
2015-12-17T06:44:53-07:00
Forum: MagickWand
Topic: Memory leak in BlobToImage
Replies: 3
Views: 17721

Re: Memory leak in BlobToImage

Got it.

I should've used DestroyImageList instead of DestroyImage
by kiryushinm
2015-12-17T06:13:49-07:00
Forum: MagickWand
Topic: Memory leak in BlobToImage
Replies: 3
Views: 17721

Re: Memory leak in BlobToImage

The problem is in coders/icon.c, ReadICONImage function
There is a loop iterating through all images in ico file. After each iteration it allocates memory for the next one. But it seems like this memory stays allocated.
by kiryushinm
2015-12-17T04:09:12-07:00
Forum: MagickWand
Topic: Memory leak in BlobToImage
Replies: 3
Views: 17721

Memory leak in BlobToImage

Hi! I'm using IM 6.9.2-6 on Linux for convertion images to png format. I've got a problem with very specific type of image - multisize ICO (for example livejournal.com/favicon.ico) The convertion works fine on them but it seems like there is a memory leak. I prepared very simple code which illustrat...