diff options
-rw-r--r-- | scripts/kconfig/util.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/kconfig/util.c b/scripts/kconfig/util.c index 703ee4904613..a365594770d9 100644 --- a/scripts/kconfig/util.c +++ b/scripts/kconfig/util.c | |||
@@ -14,18 +14,16 @@ | |||
14 | struct file *file_lookup(const char *name) | 14 | struct file *file_lookup(const char *name) |
15 | { | 15 | { |
16 | struct file *file; | 16 | struct file *file; |
17 | char *file_name = sym_expand_string_value(name); | ||
18 | 17 | ||
19 | for (file = file_list; file; file = file->next) { | 18 | for (file = file_list; file; file = file->next) { |
20 | if (!strcmp(name, file->name)) { | 19 | if (!strcmp(name, file->name)) { |
21 | free(file_name); | ||
22 | return file; | 20 | return file; |
23 | } | 21 | } |
24 | } | 22 | } |
25 | 23 | ||
26 | file = xmalloc(sizeof(*file)); | 24 | file = xmalloc(sizeof(*file)); |
27 | memset(file, 0, sizeof(*file)); | 25 | memset(file, 0, sizeof(*file)); |
28 | file->name = file_name; | 26 | file->name = xstrdup(name); |
29 | file->next = file_list; | 27 | file->next = file_list; |
30 | file_list = file; | 28 | file_list = file; |
31 | return file; | 29 | return file; |