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:
parent
30020c0d47
commit
1147c2fcf0
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue