Commit 527ffe58 authored by Michal Marek's avatar Michal Marek

kconfig: Regenerate lexer

Apply changes from commit 177acf78 (kconfig: Fix malloc handling in conf
tools) to the _shipped file.
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 177acf78
...@@ -802,7 +802,7 @@ static void zconf_endfile(void); ...@@ -802,7 +802,7 @@ static void zconf_endfile(void);
static void new_string(void) static void new_string(void)
{ {
text = malloc(START_STRSIZE); text = xmalloc(START_STRSIZE);
text_asize = START_STRSIZE; text_asize = START_STRSIZE;
text_size = 0; text_size = 0;
*text = 0; *text = 0;
...@@ -824,7 +824,7 @@ static void append_string(const char *str, int size) ...@@ -824,7 +824,7 @@ static void append_string(const char *str, int size)
static void alloc_string(const char *str, int size) static void alloc_string(const char *str, int size)
{ {
text = malloc(size + 1); text = xmalloc(size + 1);
memcpy(text, str, size); memcpy(text, str, size);
text[size] = 0; text[size] = 0;
} }
...@@ -2343,7 +2343,7 @@ void zconf_initscan(const char *name) ...@@ -2343,7 +2343,7 @@ void zconf_initscan(const char *name)
exit(1); exit(1);
} }
current_buf = malloc(sizeof(*current_buf)); current_buf = xmalloc(sizeof(*current_buf));
memset(current_buf, 0, sizeof(*current_buf)); memset(current_buf, 0, sizeof(*current_buf));
current_file = file_lookup(name); current_file = file_lookup(name);
...@@ -2354,7 +2354,7 @@ void zconf_nextfile(const char *name) ...@@ -2354,7 +2354,7 @@ void zconf_nextfile(const char *name)
{ {
struct file *iter; struct file *iter;
struct file *file = file_lookup(name); struct file *file = file_lookup(name);
struct buffer *buf = malloc(sizeof(*buf)); struct buffer *buf = xmalloc(sizeof(*buf));
memset(buf, 0, sizeof(*buf)); memset(buf, 0, sizeof(*buf));
current_buf->state = YY_CURRENT_BUFFER; current_buf->state = YY_CURRENT_BUFFER;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment