![]()
From: Peter C. McCluskey (pcm@rahul.net)
Date: Tue Nov 13 2001 - 19:26:24 CST
I've tracked it down to a memory allocation bug with the linkquotes=1
option, and I've checked in the following fix to search.c:
720a721,722
> {
> alloc_len = 2*(match_len + add_len + 2);
722c724,725
< (char *)realloc(p, alloc_len *= 2);
--- > (char *)realloc(p, alloc_len); > }-- ------------------------------------------------------------------------------ Peter McCluskey | Free Dmitry Sklyarov! http://www.freesklyarov.org/ http://www.rahul.net/pcm |
![]()