]> git.eshelyaron.com Git - emacs.git/commitdiff
(sys_subshell): Properly terminate execlp argument list.
authorAndreas Schwab <schwab@suse.de>
Sat, 5 Feb 2005 19:40:23 +0000 (19:40 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 5 Feb 2005 19:40:23 +0000 (19:40 +0000)
src/ChangeLog
src/sysdep.c

index fccfbf7ddd49bd994ed8d994223cdb827e757a72..31e0d0a269fffab6fd5ba34ef110d1ba948c7e6d 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-05  Andreas Schwab  <schwab@suse.de>
+
+       * sysdep.c (sys_subshell): Properly terminate execlp argument
+       list.
+
 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * xselect.c (Fx_send_client_event, x_handle_dnd_message): Handle
index 1884c0ccffab9e7a6b8920003caeaa2c9943c440..f1345e591ab8a526c6b0cb2c30e81034c099eaf3 100644 (file)
@@ -1,6 +1,6 @@
 /* Interfaces to system-dependent kernel and library entries.
    Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
-     2003, 2004  Free Software Foundation, Inc.
+     2003, 2004, 2005  Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -869,7 +869,7 @@ sys_subshell ()
       if (pid == -1)
        write (1, "Can't execute subshell", 22);
 #else   /* not WINDOWSNT */
-      execlp (sh, sh, 0);
+      execlp (sh, sh, (char *) 0);
       write (1, "Can't execute subshell", 22);
       _exit (1);
 #endif  /* not WINDOWSNT */