efi_selftest: correctly check return values
When cancelling the timer we should check the return value provided by the set_timer service. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
2d5dc2a52d
commit
abe994633b
|
|
@ -186,7 +186,7 @@ static int execute(void)
|
||||||
return EFI_ST_FAILURE;
|
return EFI_ST_FAILURE;
|
||||||
}
|
}
|
||||||
ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0);
|
ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0);
|
||||||
if (index != 0) {
|
if (ret != EFI_SUCCESS) {
|
||||||
efi_st_error("Could not cancel timer\n");
|
efi_st_error("Could not cancel timer\n");
|
||||||
return EFI_ST_FAILURE;
|
return EFI_ST_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -207,7 +207,7 @@ static int execute(void)
|
||||||
return EFI_ST_FAILURE;
|
return EFI_ST_FAILURE;
|
||||||
}
|
}
|
||||||
ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0);
|
ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0);
|
||||||
if (index != 0) {
|
if (ret != EFI_SUCCESS) {
|
||||||
efi_st_error("Could not cancel timer\n");
|
efi_st_error("Could not cancel timer\n");
|
||||||
return EFI_ST_FAILURE;
|
return EFI_ST_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue