From be4253a6d66efec4802a06a2288fcd4ef2079750 Mon Sep 17 00:00:00 2001 From: wyfcyx Date: Sun, 30 Jun 2024 13:37:36 +0000 Subject: [PATCH] deploy: a5cec847a3598cdd021899e0348d3d80f7d38032 --- ch9/src/os/mm/memory_set.rs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch9/src/os/mm/memory_set.rs.html b/ch9/src/os/mm/memory_set.rs.html index 5379216a..1352fac7 100644 --- a/ch9/src/os/mm/memory_set.rs.html +++ b/ch9/src/os/mm/memory_set.rs.html @@ -457,7 +457,7 @@ pub fn push(&mut self, mut map_area: MapArea, data: Option<&[u8]>) { map_area.map(&mut self.page_table); if let Some(data) = data { - map_area.copy_data(&mut self.page_table, data); + map_area.copy_data(&self.page_table, data); } self.areas.push(map_area); }