Date: Sun, 16 Jul 2000 16:30:23 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Laurynas Biveinis cc: "Mark E." , djgpp-workers AT delorie DOT com Subject: Re: Bash 2.04 beta 5 released In-Reply-To: <39719647.855817A8@softhome.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 16 Jul 2000, Laurynas Biveinis wrote: > +static void dummy(void) > +{ > + __dosexec_find_on_path (0,0,0); > + __libc_termios_init(); > +} > + This had better not be called, because __dosexec_find_on_path will bomb (on DOS at least) if called with NULL first and last arguments: it dereferences both of them right away. If this function is _not_ called, then simply adding it can only cause the problem disappear if some other code corrupts memory in some weird way. Or did I miss something?