Add explicit 'return true;' for Transaction::extractArguments()

Unbreaks runtime for FreeBSD 10 (clang generated code)
This commit is contained in:
Alexey Zelkin 2016-07-04 13:26:32 +00:00 committed by Felipe Zimmerle
parent 45850d17da
commit f43704dbef
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -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.