From: Kevin O'Connor Date: Sun, 20 Sep 2009 19:42:39 +0000 (-0400) Subject: Fix uninitialized variable in cbfs menu code. X-Git-Tag: rel-0.5.0~103 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=31ae638cda019e9098127dba7a2f3f150fb65c0c;p=seabios.git Fix uninitialized variable in cbfs menu code. --- 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);