logger: Don't bother freeing buf

There are many more instances of this pattern.
This commit is contained in:
sin 2014-12-16 20:14:08 +00:00
parent 0d7822f866
commit 7e8fcc1f03
1 changed files with 0 additions and 1 deletions

View File

@ -86,7 +86,6 @@ main(int argc, char *argv[])
}
syslog(priority, "%s", buf);
}
free(buf);
closelog();
return 0;
}