diff options
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/POSIXThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index 2749301201e..975c2dd72ab 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp @@ -515,7 +515,7 @@ POSIXThread::BreakNotify(const ProcessMessage &message) // If we have an operating system plug-in, we might have set a thread specific breakpoint using the // operating system thread ID, so we can't make any assumptions about the thread ID so we must always // report the breakpoint regardless of the thread. - if (bp_site->ValidForThisThread(this) || thread.GetProcess()->GetOperatingSystem () != NULL) + if (bp_site->ValidForThisThread(this) || GetProcess()->GetOperatingSystem () != NULL) SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id)); else { |