From 6d98f7205a44f154d506af3d3a7d4ed6de0ff30b Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 9 Mar 2006 14:00:33 +0000 Subject: [PATCH] Verify if log process numbers are sensible --- kernel/utility.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kernel/utility.c b/kernel/utility.c index 3faef77d8..64520b20e 100755 --- a/kernel/utility.c +++ b/kernel/utility.c @@ -141,7 +141,9 @@ int c; /* character to append */ } else { int p, outprocs[] = OUTPUT_PROCS_ARRAY; for(p = 0; outprocs[p] != NONE; p++) { - send_sig(outprocs[p], SIGKMESS); + if(isokprocn(outprocs[p]) && !isemptyn(outprocs[p])) { + send_sig(outprocs[p], SIGKMESS); + } } } } -- 2.44.0