Thread class name for debugger has changed, so add new name

MSP-13484
This commit is contained in:
Luke Imhoff 2015-10-21 09:22:12 -05:00 committed by Brent Cook
parent 910b630d96
commit 4858ae63bd
1 changed files with 2 additions and 1 deletions

View File

@ -204,7 +204,8 @@ module Metasploit
Thread.list.reject { |thread|
# don't do `is_a? Debugger::DebugThread` because it requires Debugger::DebugThread to be loaded, which it
# won't when not debugging.
thread.class.name == 'Debugger::DebugThread'
thread.class.name == 'Debugger::DebugThread' ||
thread.class.name == 'Debase::DebugThread'
}
end
end