The original crash I got was from Debian 5, 32bit x86, running in a vm. I was able to reproduce it after building from the source package in Debian (which builds with debug symbols). The stack trace from the crash was useless however.<br>
<br>What other info do you want? I used the same environment variable as I posted earlier to trigger.<br><br>--<br>Silvio<br><br><div class="gmail_quote">On Tue, Jun 7, 2011 at 11:31 PM, Bastien ROUCARIES <span dir="ltr"><<a href="mailto:roucaries.bastien@gmail.com">roucaries.bastien@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Could you give me a test case ?<br>
<div><div></div><div class="h5"><br>
On Tue, May 31, 2011 at 4:53 AM, Silvio Cesare <<a href="mailto:silvio.cesare@gmail.com">silvio.cesare@gmail.com</a>> wrote:<br>
> Sorry again for the delays.<br>
><br>
> It looks like an off-by-1 in the option parsing code for long options. My<br>
> patch is is included.<br>
><br>
> --<br>
> Silvio<br>
><br>
> diff -ru imagemagick-6.3.7.9.dfsg2/magick/option.c<br>
> imagemagick-6.3.7.9.dfsg2-fix/magick/option.c<br>
> --- imagemagick-6.3.7.9.dfsg2/magick/option.c   2007-12-13<br>
> 07:41:12.000000000 +1100<br>
> +++ imagemagick-6.3.7.9.dfsg2-fix/magick/option.c       2011-05-31<br>
> 12:31:27.000000000 +1000<br>
> @@ -1866,7 +1866,7 @@<br>
>      while (((isspace((int) ((unsigned char) *p)) == 0) && (*p != ',')) &&<br>
>             (*p != '\0'))<br>
>      {<br>
> -      if ((q-token) >= MaxTextExtent)<br>
> +      if ((q-token) >= (MaxTextExtent - 1))<br>
>          break;<br>
>        *q++=(*p++);<br>
>      }<br>
><br>
><br>
> On Mon, May 30, 2011 at 7:38 PM, Bastien ROUCARIES<br>
> <<a href="mailto:roucaries.bastien@gmail.com">roucaries.bastien@gmail.com</a>> wrote:<br>
>><br>
>> Package: imagemagick<br>
>> Version: 8:6.6.0.4-3<br>
>><br>
>> Could you send me the info asked ?<br>
>><br>
>> Thanks<br>
>><br>
>> Bastien<br>
><br>
><br>
</div></div></blockquote></div><br>