Skip to content

Commit

Permalink
[lldb] Fix uninitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-prantl committed Aug 23, 2024
1 parent ad75775 commit 11d2de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/include/lldb/Target/StackFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ class StackFrame : public ExecutionContextScope,
Flags m_flags;
Scalar m_frame_base;
Status m_frame_base_error;
uint16_t m_frame_recognizer_generation;
uint16_t m_frame_recognizer_generation = 0;
/// Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
bool m_cfa_is_valid;
Kind m_stack_frame_kind;
Expand Down

0 comments on commit 11d2de4

Please sign in to comment.