valgrind says:
Code: Select all
==17931== Memcheck, a memory error detector
==17931== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==17931== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==17931== Command: /home/canavan/src/imagemagick_example
==17931==
>/tmp/bad-palette-alpha.png<
==17931== Conditional jump or move depends on uninitialised value(s)
==17931== at 0x56104D2: IsPixelInfoEquivalent (pixel-accessor.h:521)
==17931== by 0x56104D2: CheckImageColors.part.2 (histogram.c:718)
==17931== by 0x557B8A2: IdentifyImageType (attribute.c:827)
==17931== by 0x400BC3: fooImage (in /home/canavan/src/imagemagick_example)
==17931== by 0x400C99: main (in /home/canavan/src/imagemagick_example)
==17931==
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 7 /tmp/bad-palette-alpha.png
>/tmp/bad-palette-alpha.png<
type: 5 /tmp/bad-palette-alpha.png
failed: /tmp/bad-palette-alpha.png exp: 7 act: 5
==17931==
==17931== HEAP SUMMARY:
==17931== in use at exit: 0 bytes in 0 blocks
==17931== total heap usage: 12,537 allocs, 12,537 frees, 22,753,712 bytes allocated
==17931==
==17931== All heap blocks were freed -- no leaks are possible
==17931==
==17931== For counts of detected and suppressed errors, rerun with: -v
==17931== Use --track-origins=yes to see where uninitialised values come from
==17931== ERROR SUMMARY: 1047576 errors from 1 contexts (suppressed: 0 from 0)
Code: Select all
#include <MagickWand/MagickWand.h>
#include <stdio.h>
#include <stdlib.h>
const char * images[] = {
"/tmp/Ducati_side_shadow-fs8.png",
NULL};
const int itypes[] = { 7, 7, 7 };
int fooImage(char* inFile)
{
#define ThrowWandException(wand) \
{ \
char \
*description; \
\
ExceptionType \
severity; \
\
description=MagickGetException(wand,&severity); \
(void) fprintf(stderr,"%s %s %lu %s\n",GetMagickModule(),description); \
description=(char *) MagickRelinquishMemory(description); \
exit(-1); \
}
MagickBooleanType
status;
MagickWand
*magick_wand;
ImageType
imageType;
/*
Read an image.
*/
MagickWandGenesis();
magick_wand=NewMagickWand();
status=MagickReadImage(magick_wand, inFile);
if (status == MagickFalse)
ThrowWandException(magick_wand);
MagickResetIterator(magick_wand);
imageType = MagickIdentifyImageType(magick_wand);
fprintf(stderr, "type: %i %s\n", (int)imageType, inFile);
magick_wand=DestroyMagickWand(magick_wand);
MagickWandTerminus();
return (int)imageType;
}
int main(int argc,char **argv)
{
const char * inFile;
int i, t;
if (argc != 1)
{
(void) fprintf(stdout,"Usage: %s <image>\n",argv[0]);
exit(0);
}
while (1)
for (i=0, inFile = images[i]; inFile != NULL; i++, inFile = images[i]) {
t = fooImage((char *)inFile);
if (t != itypes[i]) {
fprintf(stderr, "failed: %s exp: %i act: %i\n", inFile, itypes[i], t);
return(1);
}
}
return(0);
}