mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-27 20:34:19 +01:00
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
@ -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 New Issue
Block a user