projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c678b44
)
openvpn plugin: use sizeof(*pointer) instead of sizeof(type)
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sat, 23 Apr 2016 09:30:57 +0000
(11:30 +0200)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sat, 23 Apr 2016 09:30:57 +0000
(11:30 +0200)
src/openvpn.c
patch
|
blob
|
history
diff --git
a/src/openvpn.c
b/src/openvpn.c
index
f10b174
..
9490ac8
100644
(file)
--- a/
src/openvpn.c
+++ b/
src/openvpn.c
@@
-712,7
+712,7
@@
static int openvpn_config (const char *key, const char *value)
temp->version = status_version;
temp->name = status_name;
- vpn_list = realloc (vpn_list, (vpn_num + 1) * sizeof (
vpn_status_t *
));
+ vpn_list = realloc (vpn_list, (vpn_num + 1) * sizeof (
*vpn_list
));
if (vpn_list == NULL)
{
char errbuf[1024];