diff options
author | Alan Cox <alan@linux.intel.com> | 2012-11-06 14:32:08 +0000 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-11-20 12:12:47 +0100 |
commit | 177acf78468bf5c359bcb8823ee3bd48b04b8380 (patch) | |
tree | 08bd5614d4147060d25278aa54e8f8bab9794677 /scripts/kconfig/menu.c | |
parent | 9a926d4354d84e424e738a6d401328340400331b (diff) | |
download | linux-3.10-177acf78468bf5c359bcb8823ee3bd48b04b8380.tar.gz linux-3.10-177acf78468bf5c359bcb8823ee3bd48b04b8380.tar.bz2 linux-3.10-177acf78468bf5c359bcb8823ee3bd48b04b8380.zip |
kconfig: Fix malloc handling in conf tools
(and get them out of the noise in the audit work)
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index a3cade659f8..84a2ba2077a 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -48,7 +48,7 @@ void menu_add_entry(struct symbol *sym) { struct menu *menu; - menu = malloc(sizeof(*menu)); + menu = xmalloc(sizeof(*menu)); memset(menu, 0, sizeof(*menu)); menu->sym = sym; menu->parent = current_menu; @@ -531,7 +531,7 @@ static void get_prompt_str(struct gstr *r, struct property *prop, location = menu; } if (head && location) { - jump = malloc(sizeof(struct jump_key)); + jump = xmalloc(sizeof(struct jump_key)); if (menu_is_visible(prop->menu)) { /* |