OSDN Git Service

Patch from Brett Hunt at micron.com to fixup potential segfaults
authorEric Andersen <andersen@codepoet.org>
Thu, 23 Jan 2003 06:36:15 +0000 (06:36 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 23 Jan 2003 06:36:15 +0000 (06:36 -0000)
during 'make menuconfig'

extra/config/menubox.c

index b9cf4b6..5be3d56 100644 (file)
@@ -311,8 +311,8 @@ dialog_menu (const char *title, const char *prompt, int height, int width,
 
                     scroll--;
 
-                    print_item (menu, items[scroll * 2]->name, 0, FALSE,
-                               (items[scroll * 2]->tag[0] != ':'));
+                    print_item (menu, items[scroll]->name, 0, FALSE,
+                               (items[scroll]->tag[0] != ':'));
                } else
                    choice = MAX(choice - 1, 0);
 
@@ -343,8 +343,8 @@ dialog_menu (const char *title, const char *prompt, int height, int width,
                     if (scroll > 0) {
                        wscrl (menu, -1);
                        scroll--;
-                       print_item (menu, items[scroll * 2]->name, 0, FALSE,
-                       (items[scroll * 2]->tag[0] != ':'));
+                       print_item (menu, items[scroll]->name, 0, FALSE,
+                       (items[scroll]->tag[0] != ':'));
                     } else {
                         if (choice > 0)
                             choice--;