Date: Mon, 19 Aug 1996 12:05:36 +0200 (IST) From: Eli Zaretskii To: DJ Delorie , djgpp-workers AT delorie DOT com Subject: Re: `system' and wildcard expansion In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Chapter 2, in which my shame is revealed by CWSDPMI null pointer protection. (There should be a law against using other DPMI hosts when testing DJGPP software.) *** src/libc/dos/process/dosexec.c~5 Fri Aug 9 21:47:40 1996 --- src/libc/dos/process/dosexec.c Mon Aug 19 11:25:22 1996 *************** *** 631,637 **** { /* If PROGRAM is an un-stubbed COFF, it must be passed in the command tail as well, since we call GO32 to run it. */ ! for (i = (is_stubbed ? 1 : 0); i <= argc; i++) { const char *p = argv[i]; if (cmdp - cmdline > CMDLEN_LIMIT) --- 631,637 ---- { /* If PROGRAM is an un-stubbed COFF, it must be passed in the command tail as well, since we call GO32 to run it. */ ! for (i = (is_stubbed ? 1 : 0); i < argc; i++) { const char *p = argv[i]; if (cmdp - cmdline > CMDLEN_LIMIT)