svn commit: r239555 - stable/9/sys/kern

Konstantin Belousov kib at FreeBSD.org
Wed Aug 22 05:18:39 UTC 2012


Author: kib
Date: Wed Aug 22 05:18:38 2012
New Revision: 239555
URL: http://svn.freebsd.org/changeset/base/239555

Log:
  MFC r239135:
  Always initialize pl_event.

Modified:
  stable/9/sys/kern/sys_process.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/kern/sys_process.c
==============================================================================
--- stable/9/sys/kern/sys_process.c	Wed Aug 22 05:15:21 2012	(r239554)
+++ stable/9/sys/kern/sys_process.c	Wed Aug 22 05:18:38 2012	(r239555)
@@ -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-all mailing list