mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 05:35:06 +00:00
Fix up VFS::resolveSymbolicLink() to use a base inode instead of a base path.
Also more VFS error plumbing.
This commit is contained in:
parent
97726862dd
commit
bea106fdb2
4 changed files with 24 additions and 25 deletions
|
@ -131,7 +131,8 @@ static void init_stage2()
|
|||
|
||||
#ifdef KSYMS
|
||||
{
|
||||
auto handle = vfs->open("/kernel.map");
|
||||
int error;
|
||||
auto handle = vfs->open("/kernel.map", error);
|
||||
if (!handle) {
|
||||
kprintf("Failed to open /kernel.map\n");
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue