Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!cmcl2!rutgers!orstcs!mist!budd From: budd@mist.cs.orst.edu (Tim Budd) Newsgroups: comp.lang.smalltalk Subject: bug in PD smalltalk Message-ID: <390@orstcs.CS.ORST.EDU> Date: Mon, 5-Oct-87 19:14:49 EDT Article-I.D.: orstcs.390 Posted: Mon Oct 5 19:14:49 1987 Date-Received: Thu, 8-Oct-87 06:10:24 EDT Sender: netnews@orstcs.CS.ORST.EDU Lines: 16 Keywords: SUN smalltalk bug For all of you with SUN workstations, or similar machines that complain about deferencing null pointers, and who tried compiling my PD smalltalk system that was just posted to comp.src.unix, there is a small problem.... In the file name.c, routine newSymbol, there is a line newSym = basicAt(symbols, hash+1); if (streq(str, charPtr(newSym))) which should be newSym = basicAt(symbols, hash+1); if (newSym && streq(str, charPtr(newSym))) so sorry. --tim budd