diff options
Diffstat (limited to 'Kernel/VM/Region.cpp')
-rw-r--r-- | Kernel/VM/Region.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/VM/Region.cpp b/Kernel/VM/Region.cpp index 20db77fd4e..24bd907342 100644 --- a/Kernel/VM/Region.cpp +++ b/Kernel/VM/Region.cpp @@ -12,7 +12,6 @@ Region::Region(const Range& range, const String& name, u8 access, bool cow) , m_access(access) , m_cow_map(Bitmap::create(m_vmo->page_count(), cow)) { - m_vmo->set_name(m_name); MM.register_region(*this); } |