diff options
author | Greg Clayton <gclayton@apple.com> | 2010-07-23 15:37:46 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-07-23 15:37:46 +0000 |
commit | 19503a2a78319cc52c3b7a295d7df1ce0574c290 (patch) | |
tree | 40be9cadea21640c5732e9a24c0f0be162070104 /lldb/source/Target/Thread.cpp | |
parent | 5e6ef6d957c28f272fdc7d413e79aadb54050090 (diff) | |
download | bcm5719-llvm-19503a2a78319cc52c3b7a295d7df1ce0574c290.tar.gz bcm5719-llvm-19503a2a78319cc52c3b7a295d7df1ce0574c290.zip |
Warnings cleanup patch from Jean-Daniel Dupas.
llvm-svn: 109226
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index fe9f7f55676..2cf64d1bf2e 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -938,7 +938,7 @@ Thread::QueueThreadPlanForStepThrough (bool abort_other_plans, bool stop_other_t { thread_plan_sp.reset(new ThreadPlanStepThrough (*this, stop_other_threads)); if (thread_plan_sp && !thread_plan_sp->ValidatePlan (NULL)) - return false; + return NULL; } QueueThreadPlan (thread_plan_sp, abort_other_plans); return thread_plan_sp.get(); |