diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-15 21:20:23 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-08-15 21:20:23 +0000 |
commit | 8334db13c31f0cc60993739e573034ebbf258f38 (patch) | |
tree | 0fd6fe1a37450a6343785b098e5fb66a03a8591e /coreutils | |
parent | 69ed30928eeb1c31196361d70e37ca3010acf8e7 (diff) | |
download | busybox-8334db13c31f0cc60993739e573034ebbf258f38.tar.gz |
cut: fix buffer overflow (bug 4544).
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index 0d95ff84f..3c9fdbda3 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c @@ -50,7 +50,7 @@ static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, u /* set up a list so we can keep track of what's been printed */ int linelen = strlen(line); - char *printed = xzalloc(linelen * sizeof(char)); + char *printed = xzalloc(linelen + 1); char *orig_line = line; unsigned cl_pos = 0; int spos; |