Skip to content

Commit

Permalink
Merge pull request #2336 from AntelopeIO/papip_stack_usage
Browse files Browse the repository at this point in the history
[5.0 -> main] avoid using a stack variable after return
  • Loading branch information
spoonincode authored Mar 25, 2024
2 parents 421c45a + 94e08f7 commit 4973afc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/producer_api_plugin/producer_api_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ using namespace eosio;
#define CALL_WITH_400(api_name, category, api_handle, call_name, INVOKE, http_response_code) \
{std::string("/v1/" #api_name "/" #call_name), \
api_category::category, \
[&](string&&, string&& body, url_response_callback&& cb) mutable { \
[&http, &producer](string&&, string&& body, url_response_callback&& cb) mutable { \
try { \
INVOKE \
cb(http_response_code, fc::variant(result)); \
Expand Down Expand Up @@ -63,6 +63,7 @@ using namespace eosio;
auto result = api_handle.call_name(std::move(params));

#define INVOKE_R_R_D(api_handle, call_name, in_param) \
const fc::microseconds http_max_response_time = http.get_max_response_time(); \
auto deadline = http_max_response_time == fc::microseconds::maximum() ? fc::time_point::maximum() \
: fc::time_point::now() + http_max_response_time; \
auto params = parse_params<in_param, http_params_types::possible_no_params>(body);\
Expand Down Expand Up @@ -91,7 +92,6 @@ void producer_api_plugin::plugin_startup() {
// lifetime of plugin is lifetime of application
auto& producer = app().get_plugin<producer_plugin>();
auto& http = app().get_plugin<http_plugin>();
fc::microseconds http_max_response_time = http.get_max_response_time();

app().get_plugin<http_plugin>().add_api({
CALL_WITH_400(producer, producer_ro, producer, paused,
Expand Down

0 comments on commit 4973afc

Please sign in to comment.