summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MokManager.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/MokManager.c b/MokManager.c
index c4b7944c..4c736d16 100644
--- a/MokManager.c
+++ b/MokManager.c
@@ -617,12 +617,14 @@ static void draw_menu (struct menu_item *items, UINTN count) {
static void free_menu (struct menu_item *items, UINTN count) {
UINTN i;
+#if 0
for (i=0; i<count; i++) {
if (items[i].text)
FreePool(items[i].text);
}
FreePool(items);
+#endif
}
static void run_menu (struct menu_item *items, UINTN count) {