From 010c8a04cdcecb02f09faeb9872418e8a89ae85f Mon Sep 17 00:00:00 2001 From: Randall Spangler Date: Thu, 28 Jul 2011 14:12:24 -0700 Subject: [PATCH] Fix missing call to VbNvTeardown() BUG=none TEST=compiles Change-Id: I7c917eee4a7893d535fc8f07a21410437c50b8a0 Reviewed-on: http://gerrit.chromium.org/gerrit/4956 Reviewed-by: Bill Richardson Tested-by: Randall Spangler --- firmware/lib/vboot_api_kernel.c | 1 + 1 file changed, 1 insertion(+) diff --git a/firmware/lib/vboot_api_kernel.c b/firmware/lib/vboot_api_kernel.c index ced9b71f23..61cbb910bd 100644 --- a/firmware/lib/vboot_api_kernel.c +++ b/firmware/lib/vboot_api_kernel.c @@ -703,6 +703,7 @@ VbError_t VbSelectAndLoadKernel(VbCommonParams* cparams, VbSelectAndLoadKernel_exit: + VbNvTeardown(&vnc); if (vnc.raw_changed) VbExNvStorageWrite(vnc.raw);