aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-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 4141b326..715af431 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)
/* Human readable message: "Not Found" CRLF */
- free( first_line_buf );
p = strtok( NULL, "" );
if( p == NULL ) { free( status_line->first_line ); return -1; }
status_line->msg = status_line->first_line + ( p - first_line_buf );
-
+ free( first_line_buf );
+
return 0;
}