summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 74b894a)
raw | patch | inline | side by side (parent: 74b894a)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 29 Nov 2015 17:22:30 +0000 (18:22 +0100) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sun, 29 Nov 2015 17:22:30 +0000 (18:22 +0100) |
CID 37987
src/openvpn.c | patch | blob | history |
diff --git a/src/openvpn.c b/src/openvpn.c
index 663a82d8fd9221fd6b138361efb03b340dc3666f..8034f5ab40a1ff676874b55b4a6725449c93e0c5 100644 (file)
--- a/src/openvpn.c
+++ b/src/openvpn.c
/* create a new vpn element since file, version and name are ok */
temp = (vpn_status_t *) malloc (sizeof (vpn_status_t));
+ if (temp == NULL)
+ {
+ char errbuf[1024];
+ ERROR ("openvpn plugin: malloc failed: %s",
+ sstrerror (errno, errbuf, sizeof (errbuf)));
+ return (1);
+ }
temp->file = status_file;
temp->version = status_version;
temp->name = status_name;