From 81d0717406da13a1c6aa7ce41a64798e27703287 Mon Sep 17 00:00:00 2001 From: Matt Loring Date: Wed, 28 Dec 2016 14:37:47 -0800 Subject: [PATCH] src: always initialize tracing controller in agent PR-URL: https://github.com/nodejs/node/pull/10507 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/tracing/agent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tracing/agent.h b/src/tracing/agent.h index 098f955192e..f6cb5af97f4 100644 --- a/src/tracing/agent.h +++ b/src/tracing/agent.h @@ -22,7 +22,7 @@ class Agent { uv_thread_t thread_; uv_loop_t tracing_loop_; v8::Platform* platform_ = nullptr; - TracingController* tracing_controller_; + TracingController* tracing_controller_ = nullptr; }; } // namespace tracing