projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac7b4bd
)
email plugin: Free "connection" in error handling.
author
Florian Forster
<octo@collectd.org>
Tue, 8 Dec 2015 10:56:09 +0000
(11:56 +0100)
committer
Florian Forster
<octo@collectd.org>
Tue, 8 Dec 2015 10:56:09 +0000
(11:56 +0100)
CID: 38010
src/email.c
patch
|
blob
|
history
diff --git
a/src/email.c
b/src/email.c
index
fdcf067
..
7493cc6
100644
(file)
--- a/
src/email.c
+++ b/
src/email.c
@@
-520,13
+520,20
@@
static void *open_connection (void __attribute__((unused)) *arg)
}
} while (EINTR == errno);
- connection = (conn_t *)smalloc (sizeof (conn_t));
+ connection = malloc (sizeof (*connection));
+ if (connection != NULL)
+ {
+ close (remote);
+ continue;
+ }
+ memset (connection, 0, sizeof (*connection));
connection->socket = fdopen (remote, "r");
connection->next = NULL;
if (NULL == connection->socket) {
close (remote);
+ sfree (connection);
continue;
}