mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: error out from get_info if the proxied call errors out
Coverity 205410
This commit is contained in:
parent
fa16df9996
commit
b90c4bc39e
1 changed files with 1 additions and 2 deletions
|
@ -2226,8 +2226,7 @@ namespace cryptonote
|
|||
//------------------------------------------------------------------------------------------------------------------------------
|
||||
bool core_rpc_server::on_get_info_json(const COMMAND_RPC_GET_INFO::request& req, COMMAND_RPC_GET_INFO::response& res, epee::json_rpc::error& error_resp, const connection_context *ctx)
|
||||
{
|
||||
on_get_info(req, res, ctx);
|
||||
if (res.status != CORE_RPC_STATUS_OK)
|
||||
if (!on_get_info(req, res, ctx) || res.status != CORE_RPC_STATUS_OK)
|
||||
{
|
||||
error_resp.code = CORE_RPC_ERROR_CODE_INTERNAL_ERROR;
|
||||
error_resp.message = res.status;
|
||||
|
|
Loading…
Reference in a new issue