mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:57:45 +00:00
Kernel: Allow Userspace<T> pointers with invalid content
It's not an error to create a Userspace<T> that points to kernel memory as the point of Userspace<T> is not to validate the address, but rather to choose safe overloads that do validation before any data transfer takes place. Fixes #4581.
This commit is contained in:
parent
bceee87f61
commit
20e2700952
1 changed files with 0 additions and 1 deletions
|
@ -60,7 +60,6 @@ public:
|
||||||
Userspace(FlatPtr ptr)
|
Userspace(FlatPtr ptr)
|
||||||
: m_ptr(ptr)
|
: m_ptr(ptr)
|
||||||
{
|
{
|
||||||
ASSERT(m_ptr < 0xc0000000);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FlatPtr ptr() const { return m_ptr; }
|
FlatPtr ptr() const { return m_ptr; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue