email plugin: Avoid strtok_r to tokenize input.
authorFlorian Forster <octo@collectd.org>
Tue, 5 Dec 2017 15:50:33 +0000 (16:50 +0100)
committerFlorian Forster <octo@collectd.org>
Tue, 5 Dec 2017 15:50:33 +0000 (16:50 +0100)
commitb62e57ad02538981f6fb29fe4ac8f0c701bcd1a6
tree2ac369d92c36479165cfa8fc74708535e9d1edd8
parent6d63f6e9834c838e0a6469d9eaf17feffa3b2959
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
src/email.c