diff options
-rw-r--r-- | Kernel/TTY/TTY.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/TTY/TTY.cpp b/Kernel/TTY/TTY.cpp index a17a59fab4..407bc2413d 100644 --- a/Kernel/TTY/TTY.cpp +++ b/Kernel/TTY/TTY.cpp @@ -97,7 +97,6 @@ KResultOr<size_t> TTY::write(FileDescription&, u64, const UserOrKernelBuffer& bu }); } auto bytes_written_or_error = on_tty_write(UserOrKernelBuffer::for_kernel_buffer(modified_data), modified_data_size); - VERIFY(bytes_written_or_error.is_error() || bytes_written_or_error.value() != 0); if (bytes_written_or_error.is_error() || !(m_termios.c_oflag & OPOST) || !(m_termios.c_oflag & ONLCR)) return bytes_written_or_error; auto bytes_written = bytes_written_or_error.value(); |