diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-20 08:27:42 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-20 08:27:42 +0200 |
| commit | 3614980bbb672780bbaaef54ab8b1fa6a27d932c (patch) | |
| tree | c4e5434b04e657315d993d50eb99baa43405a005 /dev/ZKA/Sources/NeFS+FileMgr.cxx | |
| parent | 5f4a9440e97d6602222c93e8dcab8c483800a462 (diff) | |
Patches for kernel, alongside code fixes for user after free and Heap API refactor.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/ZKA/Sources/NeFS+FileMgr.cxx')
| -rw-r--r-- | dev/ZKA/Sources/NeFS+FileMgr.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev/ZKA/Sources/NeFS+FileMgr.cxx b/dev/ZKA/Sources/NeFS+FileMgr.cxx index 85630018..fa14aaae 100644 --- a/dev/ZKA/Sources/NeFS+FileMgr.cxx +++ b/dev/ZKA/Sources/NeFS+FileMgr.cxx @@ -26,11 +26,12 @@ namespace Kernel NeFileSystemMgr::~NeFileSystemMgr() { - kcout << "Destroying it...\r"; - if (fImpl) { + kcout << "Destroying FS class (NeFS)...\r"; + delete fImpl; + fImpl = nullptr; } } |
