Oops. Forgot the usleep.c file.
[oweals/busybox.git] / tee.c
diff --git a/tee.c b/tee.c
index 2f746f96d2c3dca1d7dbba32915a0d38502f8e6f..018fe117bed77627a57df69cefcd4d5315c455de 100644 (file)
--- a/tee.c
+++ b/tee.c
@@ -23,6 +23,7 @@
  */
 
 #include "internal.h"
+#include <errno.h>
 #include <stdio.h>
 
 static const char tee_usage[] =
@@ -38,7 +39,7 @@ static const char tee_usage[] =
 /* FileList _______________________________________________________________ */
 
 #define FL_MAX 1024
-static FILE *FileList[FL_MAX];
+static FILE **FileList;
 static int FL_end;
 
 typedef void (FL_Function) (FILE * file, char c);
@@ -99,6 +100,11 @@ int tee_main(int argc, char **argv)
        }
 
        /* init FILE pointers */
+       FileList = calloc(FL_MAX, sizeof(FILE*));
+       if (!FileList) {
+               fprintf(stderr, "tee: %s\n", strerror(errno));
+               exit(1);
+       }
        FL_end = 0;
        FileList[0] = stdout;
        for (; i < argc; i++) {
@@ -119,7 +125,10 @@ int tee_main(int argc, char **argv)
 
        /* clean up */
        FL_apply(tee_fclose, 0);
+       /* Don't bother to close files  Exit does that 
+        * automagically, so we can save a few bytes */
+       /* free(FileList); */
        exit(0);
 }
 
-/* $Id: tee.c,v 1.6 2000/02/08 19:58:47 erik Exp $ */
+/* $Id: tee.c,v 1.8 2000/03/23 01:09:18 erik Exp $ */