From 8d893f213dfd73f960bbf9999cf973b05baad135 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sun, 6 Jan 2019 21:21:10 +0100 Subject: src: initialize `Environment` members in class definition Initialize primitive members of `Environment` in the class definition for clarity. PR-URL: https://github.com/nodejs/node/pull/25369 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Minwoo Jung Reviewed-By: Matheus Marchini Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau --- src/env.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/env.h') diff --git a/src/env.h b/src/env.h index a76f00315f..fdd5c2382c 100644 --- a/src/env.h +++ b/src/env.h @@ -950,11 +950,11 @@ class Environment { ImmediateInfo immediate_info_; TickInfo tick_info_; const uint64_t timer_base_; - bool printed_error_; - bool abort_on_uncaught_exception_; - bool emit_env_nonstring_warning_; - bool emit_err_name_warning_; - size_t makecallback_cntr_; + bool printed_error_ = false; + bool abort_on_uncaught_exception_ = false; + bool emit_env_nonstring_warning_ = true; + bool emit_err_name_warning_ = true; + size_t makecallback_cntr_ = 0; std::vector destroy_async_id_list_; std::shared_ptr options_; @@ -1010,7 +1010,7 @@ class Environment { double* heap_statistics_buffer_ = nullptr; double* heap_space_statistics_buffer_ = nullptr; - char* http_parser_buffer_; + char* http_parser_buffer_ = nullptr; bool http_parser_buffer_in_use_ = false; std::unique_ptr http2_state_; -- cgit v1.2.3