svn commit: r239135 - head/sys/kern

Konstantin Belousov kib at FreeBSD.org
Wed Aug 8 00:20:31 UTC 2012


Author: kib
Date: Wed Aug  8 00:20:30 2012
New Revision: 239135
URL: http://svn.freebsd.org/changeset/base/239135

Log:
  Always initialize pl_event.
  
  Submitted by:	Andrey Zonov <andrey at zonov.org>
  MFC after:	3 days

Modified:
  head/sys/kern/sys_process.c

Modified: head/sys/kern/sys_process.c
==============================================================================
--- head/sys/kern/sys_process.c	Tue Aug  7 23:45:43 2012	(r239134)
+++ head/sys/kern/sys_process.c	Wed Aug  8 00:20:30 2012	(r239135)
@@ -1112,6 +1112,7 @@ kern_ptrace(struct thread *td, int req, 
 #endif
 		pl = addr;
 		pl->pl_lwpid = td2->td_tid;
+		pl->pl_event = PL_EVENT_NONE;
 		pl->pl_flags = 0;
 		if (td2->td_dbgflags & TDB_XSIG) {
 			pl->pl_event = PL_EVENT_SIGNAL;


More information about the svn-src-head mailing list