commit 7e8fcc1f037f2d9339cb5f4e0da6eeefde152525 parent 0d7822f8662747f2bb8a659469e39d545c388583 Author: sin <sin@2f30.org> Date: Tue, 16 Dec 2014 20:14:08 +0000 logger: Don't bother freeing buf There are many more instances of this pattern. Diffstat:
M | logger.c | | | 1 | - |
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/logger.c b/logger.c @@ -86,7 +86,6 @@ main(int argc, char *argv[]) } syslog(priority, "%s", buf); } - free(buf); closelog(); return 0; }