mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
Add explicit 'return true;' for Transaction::extractArguments()
Unbreaks runtime for FreeBSD 10 (clang generated code)
This commit is contained in:
parent
45850d17da
commit
f43704dbef
@ -290,6 +290,8 @@ bool Transaction::extractArguments(const std::string &orig,
|
||||
free(key_c);
|
||||
free(value_c);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@ -1740,7 +1742,7 @@ extern "C" int msc_request_body_from_file(Transaction *transaction,
|
||||
|
||||
/**
|
||||
* @name msc_process_response_headers
|
||||
* @brief Perform the analysis on the response readers.
|
||||
* @brief Perform the analysis on the response headers.
|
||||
*
|
||||
* This function perform the analysis on the response headers, notice however
|
||||
* that the headers should be added prior to the execution of this function.
|
||||
|
Loading…
x
Reference in New Issue
Block a user