Posted: 2006-04-12T16:45:41-07:00
Download ImageMagick 6.2.7-0 Beta tommorrow. We applied a patch to the GNU autoconf scripts to fix the problem you reported.
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=6344
Code: Select all
void *rpl_realloc (void *p, size_t n)
{
p = realloc(p, n);
if (p == 0 && n == 0)
return malloc(0);
return p;
}