From 31ae638cda019e9098127dba7a2f3f150fb65c0c Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 20 Sep 2009 15:42:39 -0400 Subject: [PATCH] Fix uninitialized variable in cbfs menu code. --- src/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot.c b/src/boot.c index b70d49c..b6afd35 100644 --- a/src/boot.c +++ b/src/boot.c @@ -188,7 +188,7 @@ static int menu_show_cbfs(struct ipl_entry_s *ie, int menupos) { int count = 0; - struct cbfs_file *file; + struct cbfs_file *file = NULL; for (;;) { file = cbfs_findprefix("img/", file); if (!file) @@ -229,7 +229,7 @@ interactive_bootmenu() int i; for (i = 0; i < IPL.bevcount; i++) { struct ipl_entry_s *ie = &IPL.bev[i]; - int sc = 1; + int sc; switch (ie->type) { case IPL_TYPE_FLOPPY: sc = menu_show_floppy(ie, menupos); -- 2.39.5