summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Hutt <thutt@chromium.org>2012-07-31 11:16:23 -0700
committerGerrit <chrome-bot@google.com>2012-08-01 07:55:51 -0700
commit5b8210bd559437010ef3692122af008bffe29b4c (patch)
treea445b8fc979fa67baf1ebd7b97654dbd5d59b41b
parent2b45044edf702db665865de5b1b903346ed407a8 (diff)
downloadvboot-5b8210bd559437010ef3692122af008bffe29b4c.tar.gz
Fix 'possible use of unassigned' variable 'retval'.
This change ensures that 'retval' is set for all paths to 'done'. BUG=none TEST=Now compiles without warning. Signed-off-by: Taylor Hutt <thutt@chromium.org> Change-Id: I4ab368b5c60afbed28a5b6d5417e18bedf986e2d Reviewed-on: https://gerrit.chromium.org/gerrit/28827 Reviewed-by: Randall Spangler <rspangler@chromium.org> Tested-by: Taylor Hutt <thutt@chromium.org> Commit-Ready: Taylor Hutt <thutt@chromium.org>
-rw-r--r--cgpt/cgpt_boot.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cgpt/cgpt_boot.c b/cgpt/cgpt_boot.c
index d3d207a7..9176a0cb 100644
--- a/cgpt/cgpt_boot.c
+++ b/cgpt/cgpt_boot.c
@@ -33,6 +33,7 @@ int cgpt_get_boot_partition_number(CgptBootParams *params) {
if (CGPT_OK != ReadPMBR(&drive)) {
Error("Unable to read PMBR\n");
+ retval = CGPT_FAILED;
goto done;
}