summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-François Rameau <jf.rameau@gmail.com>2018-06-01 16:18:31 (GMT)
committerGitHub <noreply@github.com>2018-06-01 16:18:31 (GMT)
commitfa157795d06a30e6509b7521938e9a550c47d3c4 (patch)
treee9804fe8e934c2fb9a6ff8803282a6812c54b6b8
parent25a2205f7ab4037c5b63f3af3b1533e0b472327f (diff)
downloadmonitoring-plugins-fa15779.tar.gz
Avoid working with free'ed memoryrefs/pull/1537/head
-rw-r--r--plugins/check_curl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 4141b32..715af43 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -1920,11 +1920,11 @@ curlhelp_parse_statusline (const char *buf, curlhelp_statusline *status_line)
1920 1920
1921 /* Human readable message: "Not Found" CRLF */ 1921 /* Human readable message: "Not Found" CRLF */
1922 1922
1923 free( first_line_buf );
1924 p = strtok( NULL, "" ); 1923 p = strtok( NULL, "" );
1925 if( p == NULL ) { free( status_line->first_line ); return -1; } 1924 if( p == NULL ) { free( status_line->first_line ); return -1; }
1926 status_line->msg = status_line->first_line + ( p - first_line_buf ); 1925 status_line->msg = status_line->first_line + ( p - first_line_buf );
1927 1926 free( first_line_buf );
1927
1928 return 0; 1928 return 0;
1929} 1929}
1930 1930