I found a invalid memory access bug detected in the actual SVN-Version of magick/string.c
The memcpy() commands exceeds the length of the source string in CloneString(), AcquireString() and ConstantString().
Code: Select all
<(void) memcpy(destination,source,length*sizeof(*destination));
>(void) memcpy(destination,source,length*sizeof(char));
Anyway, Thanks for your Great Library!
Bernhard