search for: 6e076a5

Displaying 1 result from an estimated 1 matches for "6e076a5".

Did you mean: 6e076a59
2012 Oct 01
0
[klibc:master] Avoid overflow for very long variable name
...;meyering at redhat.com> Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au> Signed-off-by: maximilian attems <max at stro.at> --- usr/dash/parser.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/usr/dash/parser.c b/usr/dash/parser.c index 528d005..6e076a5 100644 --- a/usr/dash/parser.c +++ b/usr/dash/parser.c @@ -852,7 +852,7 @@ readtoken1(int firstc, char const *syntax, char *eofmark, int striptabs) { int c = firstc; char *out; - int len; + size_t len; struct nodelist *bqlist; int quotef; int dblquote;