Date: Thu, 2 Apr 1998 01:40:07 -0500 (EST) From: Snob Art Genre <benedict@echonyc.com> To: Eivind Eklund <eivind@yes.no> Cc: "Kenneth P. Stox" <ken@stox.sa.enteract.com>, Alex Povolotsky <tarkhil@asteroid.svib.ru>, hackers@FreeBSD.ORG Subject: Re: Mozilla and LessTif Message-ID: <Pine.GSO.3.96.980402013729.26757A-100000@echonyc.com> In-Reply-To: <19980402030908.62016@follo.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Has this been committed to the port? Or do I have to either patch it by hand or wait for 0.84? On Thu, 2 Apr 1998, Eivind Eklund wrote: > On Wed, Apr 01, 1998 at 05:51:29PM -0600, Kenneth P. Stox wrote: > > > > Well, I've gotten far enough to bring up the first screen, then it locks > > up. :-( I'm using 3.0-current, lesstif 0.83, and Eilvind's port. > > That's apparently due to a bad free in Lesstif. Here's a patch (From > Dan McGuirk <mcguirk@indirect.com>, originally posted to > mozilla-general): > > Index: lib/Xm/FontList.c > =================================================================== > RCS file: /usr/local/cvsroot/lesstif/lib/Xm/FontList.c,v > retrieving revision 1.1.1.1 > diff -u -r1.1.1.1 FontList.c > --- FontList.c 1998/03/31 21:39:14 1.1.1.1 > +++ FontList.c 1998/04/01 00:54:55 > @@ -211,7 +211,7 @@ > if (entry) > { > XtFree((*entry)->tag); > - XtFree((XtPointer)entry); > + XtFree((XtPointer)*entry); > > /* should we close the Font? */ > } > > > Eivind. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message > Ben "You have your mind on computers, it seems." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.3.96.980402013729.26757A-100000>