commit 6492c59072c2b666c5d98a353920c3311807a8f5 parent 486d22fc48abf753bdc90e4c73a9a998b42ebe3d Author: sin <sin@2f30.org> Date: Fri, 11 Oct 2013 16:59:19 +0100 Free allocated memory No harm but silences analyzers and we are already free-ing buffers everywhere else. Diffstat:
M | tee.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/tee.c b/tee.c @@ -46,6 +46,7 @@ main(int argc, char *argv[]) } if(ferror(stdin)) eprintf("<stdin>: read error:"); + free(fps); return EXIT_SUCCESS; }