commit 6492c59072c2b666c5d98a353920c3311807a8f5 Author: sin <[email protected]> Date: Fri Oct 11 16:59:19 2013 +0100
Free allocated memory
No harm but silences analyzers and we are already
free-ing buffers everywhere else.
diff --git a/tee.c b/tee.c
index 181bad7..b051fb4 100644
--- 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;
}
