lynx-dev
[Top][All Lists]
Advanced

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

LYNX-DEV Re: VLINKS


From: Klaus Weide
Subject: LYNX-DEV Re: VLINKS
Date: Mon, 9 Dec 1996 12:09:52 -0600 (CST)

> On Mon, 9 Dec 1996, Foteos Macrides wrote:
> 
> [...]
> >     The VLINKS feature I just added works well with it too.  I
> > started out to address the need for a complete visited links "history"
> > (if people understood the History Page logic and security and
> > efficiency issues it addresses, and how to use it as intended, they
> > perhaps would be glad the VLINKS was an addition, not a replacement).

I was curious, so I had to try it..

It needs the following fix (otherwise I get a fatal exit):

*** lynx2-6/src/LYHistory.c~    Sun Dec  8 13:16:32 1996
--- lynx2-6/src/LYHistory.c     Mon Dec  9 12:01:20 1996
***************
*** 80,86 ****
        return;
      }
  
!     if ((new = (VisitedLink *)calloc(1, sizeof(new))) == NULL)
        outofmem(__FILE__, "HTAddVisitedLink");
      StrAllocCopy(new->address, doc->address);
      StrAllocCopy(new->title, (doc->title ? doc->title : "(no title)"));
--- 80,86 ----
        return;
      }
  
!     if ((new = (VisitedLink *)calloc(1, sizeof(*new))) == NULL)
        outofmem(__FILE__, "HTAddVisitedLink");
      StrAllocCopy(new->address, doc->address);
      StrAllocCopy(new->title, (doc->title ? doc->title : "(no title)"));

;
; To UNSUBSCRIBE:  Send a mail message to address@hidden
;                  with "unsubscribe lynx-dev" (without the
;                  quotation marks) on a line by itself.
;

reply via email to

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