mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
beda478821
Dealing with the unsigned overflow propagation here just seems unreasonably error prone. Let's limit ourselves to 2GB buffer sizes instead.
38 lines
558 B
C++
38 lines
558 B
C++
#include "NullDevice.h"
|
|
#include "Limits.h"
|
|
#include <AK/StdLibExtras.h>
|
|
#include <AK/kstdio.h>
|
|
|
|
static NullDevice* s_the;
|
|
|
|
NullDevice& NullDevice::the()
|
|
{
|
|
ASSERT(s_the);
|
|
return *s_the;
|
|
}
|
|
|
|
NullDevice::NullDevice()
|
|
: CharacterDevice(1, 3)
|
|
{
|
|
s_the = this;
|
|
}
|
|
|
|
NullDevice::~NullDevice()
|
|
{
|
|
}
|
|
|
|
bool NullDevice::can_read(Process&) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ssize_t NullDevice::read(Process&, byte*, ssize_t)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
ssize_t NullDevice::write(Process&, const byte*, ssize_t buffer_size)
|
|
{
|
|
return min(GoodBufferSize, buffer_size);
|
|
}
|
|
|