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 <jperaza@chromium.org>
This commit is contained in:
Zequan Wu 2021-09-16 17:49:41 -07:00 committed by Joshua Peraza
parent 30020c0d47
commit 1147c2fcf0

View file

@ -972,7 +972,8 @@ class DwarfCUToModule::NamedScopeHandler: public GenericDIEHandler {
public: public:
NamedScopeHandler(CUContext* cu_context, DIEContext* parent_context, NamedScopeHandler(CUContext* cu_context, DIEContext* parent_context,
uint64_t offset, bool handle_inline) uint64_t offset, bool handle_inline)
: GenericDIEHandler(cu_context, parent_context, offset) { } : GenericDIEHandler(cu_context, parent_context, offset),
handle_inline_(handle_inline) { }
bool EndAttributes(); bool EndAttributes();
DIEHandler* FindChildHandler(uint64_t offset, enum DwarfTag tag); DIEHandler* FindChildHandler(uint64_t offset, enum DwarfTag tag);