Skip to content

Commit 11d2de4

Browse files
committed
[lldb] Fix uninitialized variable
1 parent ad75775 commit 11d2de4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/Target/StackFrame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ class StackFrame : public ExecutionContextScope,
539539
Flags m_flags;
540540
Scalar m_frame_base;
541541
Status m_frame_base_error;
542-
uint16_t m_frame_recognizer_generation;
542+
uint16_t m_frame_recognizer_generation = 0;
543543
/// Does this frame have a CFA? Different from CFA == LLDB_INVALID_ADDRESS.
544544
bool m_cfa_is_valid;
545545
Kind m_stack_frame_kind;

0 commit comments

Comments
 (0)