Skip to content
Snippets Groups Projects
Commit 38bb4099 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[wookey] Fix bug in wookey that prevented proof

Was actually fixed upstream in commit [30a695e821ca30819](https://github.com/wookey-project/bootloader/commit/30a695e821ca308197d8039bd0975a165b03bb5e)
parent 4a7067c5
No related branches found
No related tags found
No related merge requests found
...@@ -685,7 +685,7 @@ static loader_request_t loader_exec_automaton_transition(const loader_request_t ...@@ -685,7 +685,7 @@ static loader_request_t loader_exec_automaton_transition(const loader_request_t
{ {
loader_state_t state = loader_get_state(); loader_state_t state = loader_get_state();
loader_request_t nextreq = LOADER_REQ_ERROR; loader_request_t nextreq = LOADER_REQ_ERROR;
if (! loader_is_valid_transition(state, req)) { if (! (loader_is_valid_transition(state, req) == sectrue)) {
loader_set_state(LOADER_ERROR); loader_set_state(LOADER_ERROR);
goto end_transition; goto end_transition;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment