# HG changeset patch # User Richard M. Stallman # Date 923590204 0 # Node ID 078d53377010aabef421ca92bf47c73191ad95f0 # Parent a40067a8696be2eabba358e2e5d0a4af2a60e511 (Faccept_process_output): Check validity of PROCESS. diff -r a40067a8696b -r 078d53377010 src/process.c --- a/src/process.c Thu Apr 08 16:46:15 1999 +0000 +++ b/src/process.c Thu Apr 08 16:50:04 1999 +0000 @@ -2157,6 +2157,9 @@ int seconds; int useconds; + if (! NILP (process)) + CHECK_PROCESS (process, 0); + if (! NILP (timeout_msecs)) { CHECK_NUMBER (timeout_msecs, 2);