diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-01 09:48:24 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-08-01 09:48:24 +0200 |
| commit | 4ce1fdaa5ad4252bff486a824f53cb93cc156925 (patch) | |
| tree | f4b990144ed76b688600372ad262c94175994e3e /Kernel/Sources/FS | |
| parent | 63dc1384bcbf8caf4ca53c715628db2c36b0b096 (diff) | |
MHR-39: Implement entrypoint probe, can now find it.
Next step is to map the sections into their own addresses.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources/FS')
| -rw-r--r-- | Kernel/Sources/FS/NewFS.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Sources/FS/NewFS.cxx b/Kernel/Sources/FS/NewFS.cxx index ae2013cb..82759c72 100644 --- a/Kernel/Sources/FS/NewFS.cxx +++ b/Kernel/Sources/FS/NewFS.cxx @@ -305,7 +305,7 @@ _Output NFS_CATALOG_STRUCT* NewFSParser::CreateCatalog(_Input const char* name, if (flagsList & kNewFSCatalogKindMetaFile) { - if (UserView::The()->Current() != UserView::The()->fRootUser) + if (UserManager::The()->Current() != UserManager::The()->fRootUser) { delete catalogChild; return nullptr; |
