diff --git a/Kernel/VM/PurgeableVMObject.cpp b/Kernel/VM/PurgeableVMObject.cpp index 8c5c5995d2f..c646af4de0e 100644 --- a/Kernel/VM/PurgeableVMObject.cpp +++ b/Kernel/VM/PurgeableVMObject.cpp @@ -42,6 +42,8 @@ PurgeableVMObject::PurgeableVMObject(size_t size) PurgeableVMObject::PurgeableVMObject(const PurgeableVMObject& other) : AnonymousVMObject(other) + , m_was_purged(other.m_was_purged) + , m_volatile(other.m_volatile) { }