Remove assert now that we have a 'i' character that might come through as well as...
authorGreg Clayton <gclayton@apple.com>
Fri, 11 Jul 2014 23:15:11 +0000 (23:15 +0000)
committerGreg Clayton <gclayton@apple.com>
Fri, 11 Jul 2014 23:15:11 +0000 (23:15 +0000)
<rdar://problem/15840749>

llvm-svn: 212856

lldb/source/Core/ConnectionFileDescriptor.cpp

index 2f1d16f..849c199 100644 (file)
@@ -985,7 +985,6 @@ ConnectionFileDescriptor::BytesAvailable (uint32_t timeout_usec, Error *error_pt
                     {
                         bytes_read = ::read (pipe_fd, buffer, sizeof(buffer));
                     } while (bytes_read < 0 && errno == EINTR);
-                    assert (bytes_read == 1 && buffer[0] == 'q');
 
                     if (log)
                         log->Printf("%p ConnectionFileDescriptor::BytesAvailable() got data: %*s from the command channel.",