projects
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
kconfig: incorrect 'len' field initialisation ?
[linux-2.6.git]
/
scripts
/
kconfig
/
util.c
diff --git
a/scripts/kconfig/util.c
b/scripts/kconfig/util.c
index
f8e73c0
..
3cc9f93
100644
(file)
--- a/
scripts/kconfig/util.c
+++ b/
scripts/kconfig/util.c
@@
-77,7
+77,7
@@
struct gstr str_new(void)
{
struct gstr gs;
gs.s = malloc(sizeof(char) * 64);
- gs.len = 16;
+ gs.len = 64;
strcpy(gs.s, "\0");
return gs;
}