changeset 10861:9cf4c59c7395

8179083: Uninitialized notifier in Java Monitor Wait tracing event Reviewed-by: mgronlun, phh
author egahlin
date Fri, 01 Dec 2017 17:03:07 +0100
parents b90e951950c7
children b4a58a1cd60f
files src/share/vm/runtime/objectMonitor.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/runtime/objectMonitor.cpp	Wed Jul 13 19:08:07 2016 +0300
+++ b/src/share/vm/runtime/objectMonitor.cpp	Fri Dec 01 17:03:07 2017 +0100
@@ -2316,6 +2316,7 @@
   _next     = NULL;
   _prev     = NULL;
   _notified = 0;
+  _notifier_tid = 0;
   TState    = TS_RUN ;
   _thread   = thread;
   _event    = thread->_ParkEvent ;