diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-04-11 00:52:01 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-04-11 00:52:01 +0000 |
commit | 1f1ff10b0c18957931888a690dc5f2597be8eecf (patch) | |
tree | 87b2ef43c654d2546cbc8e65e52edc776f354643 /src/tac.c | |
parent | 8745735aaf830f8339a552a79bc557c7592a9c44 (diff) | |
download | coreutils-1f1ff10b0c18957931888a690dc5f2597be8eecf.tar.gz |
(compiled_separator_fastmap): New ver.
(main): Use it. Don't bother allocating a buffer.
Diffstat (limited to 'src/tac.c')
-rw-r--r-- | src/tac.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* tac - concatenate and print files in reverse - Copyright (C) 1988-1991, 1995-2005 Free Software Foundation, Inc. + Copyright (C) 1988-1991, 1995-2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -110,6 +110,7 @@ static size_t G_buffer_size; /* The compiled regular expression representing `separator'. */ static struct re_pattern_buffer compiled_separator; +static char compiled_separator_fastmap[UCHAR_MAX + 1]; static struct option const longopts[] = { @@ -608,9 +609,9 @@ main (int argc, char **argv) if (sentinel_length == 0) { - compiled_separator.allocated = 100; - compiled_separator.buffer = xmalloc (compiled_separator.allocated); - compiled_separator.fastmap = xmalloc (256); + compiled_separator.buffer = NULL; + compiled_separator.allocated = 0; + compiled_separator.fastmap = compiled_separator_fastmap; compiled_separator.translate = NULL; error_message = re_compile_pattern (separator, strlen (separator), &compiled_separator); |