[collectd-changes] collectd, the system statistics collection daemon: Changes to 'collectd-5.7'
Florian Forster
octo at verplant.org
Tue Dec 5 16:59:05 CET 2017
src/email.c | 15 ++++-----
src/liboconfig/parser.y | 81 +++++++++++++++++++++++++++++++----------------
2 files changed, 61 insertions(+), 35 deletions(-)
New commits:
commit cc61d3adc20693ab3fe8f48c37eeb1167b41773a
Author: Florian Forster <octo at collectd.org>
Date: Tue Dec 5 16:58:29 2017 +0100
liboconfig: Coding style changes.
Mostly whitespace.
commit c01b130763a1b02d119897d2770f8f323e34daaa
Author: Florian Forster <octo at collectd.org>
Date: Tue Dec 5 16:56:53 2017 +0100
liboconfig: Improve error handling.
* Use the YYERROR macro instead of exit(3).
* Remove newlines from strings passed to yyerror().
* Change return valud or yyerror() from int to void.
commit c9d3f76a5bd7aaa3d8772e88f8c0292e8b55f66b
Author: Florian Forster <octo at collectd.org>
Date: Tue Dec 5 16:53:34 2017 +0100
liboconfig: Check return values of calloc() and realloc().
CID: 38123
commit b62e57ad02538981f6fb29fe4ac8f0c701bcd1a6
Author: Florian Forster <octo at collectd.org>
Date: Tue Dec 5 16:50:33 2017 +0100
email plugin: Avoid strtok_r to tokenize input.
Coverity (wrongly) thinks that "type" might have been NULL (since its
first argument is non-NULL, this cannot happen). It has a point about
insufficient NULL-ness checks, though, as "tmp" may very well be NULL and
we're passing it to atoi() which will likely not take this well.
CID: 37988
More information about the collectd-changes
mailing list