commit | 3d90292297690de3878cab4fd40f52d102cdc66b | [log] [tgz] |
---|---|---|
author | Jim Ingham <jingham@apple.com> | Wed Mar 07 22:03:04 2012 +0000 |
committer | Jim Ingham <jingham@apple.com> | Wed Mar 07 22:03:04 2012 +0000 |
tree | a33f96b7dac97a3aff2cda19c7e51ed3d8691afb | |
parent | e761213428bb1ad8a8835ac4bf52233ae2121f3c [diff] [blame] |
When comparing a Thread against a ThreadSpec, don't fetch the Thread's Name or QueueName if the ThreadSpec doesn't specify them. llvm-svn: 152245
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 7a5e7f0..1000b69 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp
@@ -542,7 +542,7 @@ if (spec == NULL) return true; - return spec->ThreadPassesBasicTests(this); + return spec->ThreadPassesBasicTests(*this); } void