diff --git a/tail.c b/tail.c index 906e424..4c3a0e7 100644 --- a/tail.c +++ b/tail.c @@ -58,7 +58,7 @@ taketail(FILE *fp, const char *str, long n) { char **ring; long i, j; - size_t *size; + size_t *size = NULL; if(!(ring = calloc(n, sizeof *ring)) || !(size = calloc(n, sizeof *size))) eprintf("calloc:");