projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc014af
)
write_http plugin: Don't compare pointer with numeric literal.
author
Florian Forster
<octo@collectd.org>
Fri, 5 Sep 2014 05:16:20 +0000
(07:16 +0200)
committer
Florian Forster
<octo@collectd.org>
Fri, 5 Sep 2014 05:16:20 +0000
(07:16 +0200)
Not even zero. Not even once.
References: #722
src/write_http.c
patch
|
blob
|
history
diff --git
a/src/write_http.c
b/src/write_http.c
index
198fb48
..
7a1fbd0
100644
(file)
--- a/
src/write_http.c
+++ b/
src/write_http.c
@@
-590,7
+590,7
@@
static int wh_config_url (oconfig_item_t *ci) /* {{{ */
/* Allocate the buffer. */
cb->send_buffer = malloc (cb->send_buffer_size);
- if (cb->send_buffer ==
0
)
+ if (cb->send_buffer ==
NULL
)
{
ERROR ("write_http plugin: malloc(%zu) failed.", cb->send_buffer_size);
wh_callback_free (cb);