[hackers] [sbase] No need to free the buffer for every call to getline() || sin

From: <git_AT_suckless.org>
Date: Mon, 9 Feb 2015 16:25:08 +0100 (CET)

commit 320e1ef322b65f0460768f4bcf09e6ecead932cd
Author: sin <sin_AT_2f30.org>
Date: Mon Feb 9 14:10:24 2015 +0000

    No need to free the buffer for every call to getline()
    
    It will realloc as necessary if the new line size exceeds the
    capacity of the allocated buffer.

diff --git a/tail.c b/tail.c
index 3ea4739..b97ed5c 100644
--- a/tail.c
+++ b/tail.c
_AT_@ -101,13 +101,12 @@ main(int argc, char *argv[])
                         tail(fp, argv[0], n);
 
                         if (fflag && argc == 1) {
- for(;; tmp = NULL, tmpsize = 0) {
+ tmp = NULL;
+ tmpsize = 0;
+ for(;;) {
                                         while (getline(&tmp, &tmpsize, fp) != -1) {
                                                 fputs(tmp, stdout);
                                                 fflush(stdout);
- free(tmp);
- tmp = NULL;
- tmpsize = 0;
                                         }
                                         if (ferror(fp))
                                                 eprintf("readline '%s':", argv[0]);
Received on Mon Feb 09 2015 - 16:25:08 CET

This archive was generated by hypermail 2.3.0 : Mon Feb 09 2015 - 16:36:12 CET