diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 21:51:59 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 21:51:59 +0100 |
commit | 6b581aff773659ff5201450bb25d6bbc360d3b30 (patch) | |
tree | 133311b9cf0e89dd2f7f973530a5ab18aa253d02 /Kernel/Ext2FileSystem.cpp | |
parent | bff5b71467b9ef1f5fcee496923dbc9a814fee40 (diff) | |
download | serenity-6b581aff773659ff5201450bb25d6bbc360d3b30.zip |
Kernel: Make a copy of the dirty inode list before iterating in sync().
Diffstat (limited to 'Kernel/Ext2FileSystem.cpp')
-rw-r--r-- | Kernel/Ext2FileSystem.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Ext2FileSystem.cpp b/Kernel/Ext2FileSystem.cpp index cac3049d01..8b813de1f3 100644 --- a/Kernel/Ext2FileSystem.cpp +++ b/Kernel/Ext2FileSystem.cpp @@ -20,7 +20,6 @@ Retained<Ext2FS> Ext2FS::create(Retained<DiskDevice>&& device) Ext2FS::Ext2FS(Retained<DiskDevice>&& device) : DiskBackedFS(move(device)) - , m_lock("Ext2FS") { } |