diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2021-09-06 03:28:46 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-06 01:53:26 +0200 |
commit | 3a9f00c59bad7735970c72cb940d08161fda09b0 (patch) | |
tree | 5eebf972a2a3b3c2e73d40068f4d58c9d6368764 /Userland/Services | |
parent | 6606993432273959d7b2e1815646ee8a54025103 (diff) | |
download | serenity-3a9f00c59bad7735970c72cb940d08161fda09b0.zip |
Everywhere: Use OOM-safe ByteBuffer APIs where possible
If we can easily communicate failure, let's avoid asserting and report
failure instead.
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/InspectorServer/InspectableProcess.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Userland/Services/InspectorServer/InspectableProcess.cpp b/Userland/Services/InspectorServer/InspectableProcess.cpp index bc165b5f99..140d8a1427 100644 --- a/Userland/Services/InspectorServer/InspectableProcess.cpp +++ b/Userland/Services/InspectorServer/InspectableProcess.cpp @@ -57,7 +57,10 @@ String InspectableProcess::wait_for_response() auto packet = m_socket->read(remaining_bytes); if (packet.size() == 0) break; - data.append(packet.data(), packet.size()); + if (!data.try_append(packet.data(), packet.size())) { + dbgln("Failed to append {} bytes to data buffer", packet.size()); + break; + } remaining_bytes -= packet.size(); } |