lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Lynx-dev] 2.8.6dev.10 crashes


From: Thomas Dickey
Subject: Re: [Lynx-dev] 2.8.6dev.10 crashes
Date: Tue, 4 Jan 2005 21:36:17 -0500 (EST)

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

reply via email to

[Prev in Thread] Current Thread [Next in Thread]