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 | |
parent | 69ed30928eeb1c31196361d70e37ca3010acf8e7 (diff) | |
download | busybox-w32-8334db13c31f0cc60993739e573034ebbf258f38.tar.gz busybox-w32-8334db13c31f0cc60993739e573034ebbf258f38.tar.bz2 busybox-w32-8334db13c31f0cc60993739e573034ebbf258f38.zip |
cut: fix buffer overflow (bug 4544).
-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 | |||
50 | 50 | ||
51 | /* set up a list so we can keep track of what's been printed */ | 51 | /* set up a list so we can keep track of what's been printed */ |
52 | int linelen = strlen(line); | 52 | int linelen = strlen(line); |
53 | char *printed = xzalloc(linelen * sizeof(char)); | 53 | char *printed = xzalloc(linelen + 1); |
54 | char *orig_line = line; | 54 | char *orig_line = line; |
55 | unsigned cl_pos = 0; | 55 | unsigned cl_pos = 0; |
56 | int spos; | 56 | int spos; |