On Wed, 5 Jan 2005, Thorsten Glaser wrote:
Fr�d�ric L. W. Meunier dixit:
At http://www.soccerway.com/results/browsecompetitions.php when I press '\' to
see the source.
Thanks Fr�d�ric, this is _exactly_ my problem, just you made
it reproducible!
Thomas, now we can dig into it much more...
I see the problem:
if ((dest = HTAnchor_followLink(textanchor->anchor)) &&
(text->hiddenlinkflag != HIDDENLINKS_IGNORE ||
HTList_isEmpty(text->hidden_links))) {
HTList_appendObject(text->hidden_links, cp_freeme =
HTAnchor_address(dest));
FREE(cp_freeme);
}
for this case, it should look like
if ((dest = HTAnchor_followLink(textanchor->anchor)) &&
(text->hiddenlinkflag != HIDDENLINKS_IGNORE ||
HTList_isEmpty(text->hidden_links))) {
HTList_appendObject(text->hidden_links, HTAnchor_address(dest));
}
I probably changed this one by mistake when I was looking for the unfreed
results from HTAnchor_address(), e.g., in the CTRACE's.
--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net
_______________________________________________
Lynx-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/lynx-dev