From afbae16179f3867e34284de9ef55e971c070cb44 Mon Sep 17 00:00:00 2001 From: Chaoren Lin Date: Tue, 7 Apr 2015 22:50:35 +0000 Subject: [PATCH] Fix compilation failure caused by r234366. llvm-svn: 234373 --- lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index 2749301201e3..975c2dd72ab7 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 {