From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from finch.cse.psu.edu ([130.203.12.29]) by hawkwind.utcs.utoronto.ca with SMTP id <24684>; Tue, 28 Oct 1997 17:43:51 -0500 Received: (qmail 21504 invoked by uid 991); 28 Oct 1997 06:32:35 -0000 Message-ID: <19971028063235.21502.qmail@finch.cse.psu.edu> To: sam-fans@hawkwind.utcs.toronto.edu Subject: 9term bug Date: Tue, 28 Oct 1997 01:32:35 -0500 From: Scott Schwartz Hi all, I don't recall if this has been reported or not, but libtext from fails to initialize everything in a newly allocated Text. (bcheck is your friend.) =================================================================== RCS file: RCS/text.c,v retrieving revision 1.1 diff -c -r1.1 text.c *** /tmp/T0a005Fs Tue Oct 28 01:30:37 1997 --- text.c Tue Oct 28 01:23:56 1997 *************** *** 47,52 **** --- 47,53 ---- berror("textalloc: calloc"); t->length = 0; t->base = 0; + t->end = 0; t->p0 = 0; t->p1 = 0; t->pout = 0;