Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!yetti!geac!orcisi!dmnhack!phb From: phb@dmnhack.UUCP Newsgroups: comp.sources.bugs Subject: MUSH bug fix Message-ID: <131@dmnhack.UUCP> Date: Tue, 13-Oct-87 16:28:06 EDT Article-I.D.: dmnhack.131 Posted: Tue Oct 13 16:28:06 1987 Date-Received: Thu, 15-Oct-87 22:36:14 EDT Organization: Digital Media Networks Inc., Toronto, Canada Lines: 9 I got a core dump from an infinite recursion in the function "Addstr". A quick scan of it indicates that this might be the problem: line 151 of rite.c: if (newline == '\n' && !*++s) Should probably be: ++s; if (newline == '\n' && !*s)