From 1147c2fcf09cf150e6d7891e94bd390c6c8a9def Mon Sep 17 00:00:00 2001 From: Zequan Wu Date: Thu, 16 Sep 2021 17:49:41 -0700 Subject: [PATCH] Fix an uninitialized member variable in previous commit Change-Id: I83a2d026f1cef1771d28b420d76de17f0cf296ec Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/3166678 Reviewed-by: Joshua Peraza --- src/common/dwarf_cu_to_module.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/dwarf_cu_to_module.cc b/src/common/dwarf_cu_to_module.cc index 85be3220..7f7e5f10 100644 --- a/src/common/dwarf_cu_to_module.cc +++ b/src/common/dwarf_cu_to_module.cc @@ -972,7 +972,8 @@ class DwarfCUToModule::NamedScopeHandler: public GenericDIEHandler { public: NamedScopeHandler(CUContext* cu_context, DIEContext* parent_context, uint64_t offset, bool handle_inline) - : GenericDIEHandler(cu_context, parent_context, offset) { } + : GenericDIEHandler(cu_context, parent_context, offset), + handle_inline_(handle_inline) { } bool EndAttributes(); DIEHandler* FindChildHandler(uint64_t offset, enum DwarfTag tag);