elf_load_image() always returned B_OK instead of the real status.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7504 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-10 18:57:12 +00:00
parent c2c0779e26
commit cdacbf022a
1 changed files with 1 additions and 1 deletions

View File

@ -198,6 +198,6 @@ elf_load_image(Directory *directory, const char *path)
kernel_args_free(image);
close(fd);
return B_OK;
return status;
}