aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_curl.c
diff options
context:
space:
mode:
authorGravatar Sven Nierlein <sven@nierlein.de> 2021-04-07 10:30:31 +0200
committerGravatar GitHub <noreply@github.com> 2021-04-07 10:30:31 +0200
commit2e5b38cc832c3e818b43515636e04b7218e6f995 (patch)
tree158744b31a8d086396ca1780edbe5f2924d89f24 /plugins/check_curl.c
parentb820725ee18608de9c0c157f83ef160659b35207 (diff)
parent5cfc93d995cfd5cc7d1a469f3c1276c4884da2a2 (diff)
downloadmonitoring-plugins-2e5b38cc832c3e818b43515636e04b7218e6f995.tar.gz
Merge pull request #1666 from sni/check_curl_fix_header_parser
fix check_curl crash if http header contains leading spaces
Diffstat (limited to 'plugins/check_curl.c')
-rw-r--r--plugins/check_curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 8f274c26..9f1eafa2 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -2060,7 +2060,7 @@ get_header_value (const struct phr_header* headers, const size_t nof_headers, co
{
int i;
for( i = 0; i < nof_headers; i++ ) {
- if( strncasecmp( header, headers[i].name, max( headers[i].name_len, 4 ) ) == 0 ) {
+ if(headers[i].name != NULL && strncasecmp( header, headers[i].name, max( headers[i].name_len, 4 ) ) == 0 ) {
return strndup( headers[i].value, headers[i].value_len );
}
}