From 88e0184829f1cdb2dd5c8f3b2980c95de1ecc6b4 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 27 Aug 2007 12:27:40 +0000 Subject: use alloca --- mdk-stage1/modules.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c index 5130401ee..927f33fcb 100644 --- a/mdk-stage1/modules.c +++ b/mdk-stage1/modules.c @@ -354,8 +354,8 @@ enum return_type ask_insmod(enum driver_type type) enum return_type results; char * choice; char ** dlist = list_directory("/modules"); - char ** modules = malloc(sizeof(char *) * (string_array_length(dlist) + 1)); - char ** descrs = malloc(sizeof(char *) * (string_array_length(dlist) + 1)); + char ** modules = alloca(sizeof(char *) * (string_array_length(dlist) + 1)); + char ** descrs = alloca(sizeof(char *) * (string_array_length(dlist) + 1)); char ** p_dlist = dlist; char ** p_modules = modules; char ** p_descrs = descrs; @@ -369,6 +369,7 @@ enum return_type ask_insmod(enum driver_type type) continue; } *p_modules = *p_dlist; + *p_descrs = NULL; (*p_modules)[strlen(*p_modules)-strlen(kernel_module_extension())] = '\0'; /* remove trailing .ko.gz */ for (i = 0 ; i < modules_descriptions_num ; i++) { if (!strcmp(*p_modules, modules_descriptions[i].module)) -- cgit v1.2.1