Skip to content

Commit 2987fca

Browse files
authored
[lldb][Core] Fix pointless if conditon (#89650)
Addresses #85984 Signed-off-by: Troy-Butler <squintik@outlook.com> Co-authored-by: Troy-Butler <squintik@outlook.com>
1 parent 31505c4 commit 2987fca

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lldb/source/Core/Debugger.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -1115,9 +1115,6 @@ void Debugger::RunIOHandlerSync(const IOHandlerSP &reader_sp) {
11151115
IOHandlerSP top_reader_sp = reader_sp;
11161116

11171117
while (top_reader_sp) {
1118-
if (!top_reader_sp)
1119-
break;
1120-
11211118
top_reader_sp->Run();
11221119

11231120
// Don't unwind past the starting point.

0 commit comments

Comments
 (0)