projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d9a0eb
)
network plugin: Check range of pkg_numval.
author
Florian Forster
<octo@collectd.org>
Fri, 18 Dec 2015 08:24:19 +0000
(09:24 +0100)
committer
Florian Forster
<octo@collectd.org>
Fri, 18 Dec 2015 08:24:19 +0000
(09:24 +0100)
This is essentially the same as the check using exp_size a couple lines
earlier, but that appears to be too indirect for Coverity to understand.
This hopefully fixes the resulting "tainted_data_return" errors.
CID: 48420
src/network.c
patch
|
blob
|
history
diff --git
a/src/network.c
b/src/network.c
index
9169000
..
f44fe62
100644
(file)
--- a/
src/network.c
+++ b/
src/network.c
@@
-817,6
+817,7
@@
static int parse_part_values (void **ret_buffer, size_t *ret_buffer_len,
exp_size, buffer_len);
return (-1);
}
+ assert (pkg_numval <= ((buffer_len - 6) / 9));
if (pkg_length != exp_size)
{