projects
/
platform
/
upstream
/
gummiboot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fce2ecb
)
call Exit() when quitting
author
Kay Sievers
<kay@vrfy.org>
Fri, 6 Jul 2012 01:14:52 +0000
(
03:14
+0200)
committer
Kay Sievers
<kay@vrfy.org>
Fri, 6 Jul 2012 01:14:52 +0000
(
03:14
+0200)
gummiboot.c
patch
|
blob
|
history
diff --git
a/gummiboot.c
b/gummiboot.c
index
8556307
..
af8f673
100644
(file)
--- a/
gummiboot.c
+++ b/
gummiboot.c
@@
-1339,5
+1339,5
@@
EFI_STATUS EFIAPI efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
config_free(&config);
uefi_call_wrapper(root_dir->Close, 1, root_dir);
uefi_call_wrapper(BS->CloseProtocol, 4, image, &LoadedImageProtocol, image, NULL);
- return
EFI_SUCCESS
;
+ return
uefi_call_wrapper(BS->Exit, 4, image, EFI_SUCCESS, 0, NULL)
;
}