Edward O'Callaghan has submitted this change. ( https://review.coreboot.org/c/flashrom/+/62996 )
Change subject: dmi.c: Ensure g_has_dmi_support is default on shutdown ......................................................................
dmi.c: Ensure g_has_dmi_support is default on shutdown
Ensure the g_has_dmi_support variable has the default state of false after the life-time has expired.
BUG=none TEST=builds
Change-Id: I0674950304736e53d014117d287682a4f6349879 Signed-off-by: Edward O'Callaghan quasisec@google.com Reviewed-on: https://review.coreboot.org/c/flashrom/+/62996 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Thomas Heijligen src@posteo.de Reviewed-by: Nikolai Artemiev nartemiev@google.com Reviewed-by: Angel Pons th3fanbus@gmail.com --- M dmi.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Thomas Heijligen: Looks good to me, approved Angel Pons: Looks good to me, but someone else must approve Nikolai Artemiev: Looks good to me, but someone else must approve
diff --git a/dmi.c b/dmi.c index a82b494..7c0fc4c 100644 --- a/dmi.c +++ b/dmi.c @@ -386,6 +386,7 @@ free(dmi_strings[i].value); dmi_strings[i].value = NULL; } + g_has_dmi_support = false; return 0; }
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one.