From ca9b2493eeb206474df32a02e8696db3f715e5fb Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Tue, 2 Oct 2018 22:38:32 +0200 Subject: [PATCH] Merge pull request #4476 fa9e54b6 build: fix gcc false positive 'stringop-overflow' warning (xiphon) --- src/cryptonote_core/cryptonote_tx_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cryptonote_core/cryptonote_tx_utils.cpp b/src/cryptonote_core/cryptonote_tx_utils.cpp index fb2af9ceb..4bc33b56b 100644 --- a/src/cryptonote_core/cryptonote_tx_utils.cpp +++ b/src/cryptonote_core/cryptonote_tx_utils.cpp @@ -127,7 +127,7 @@ namespace cryptonote out_amounts[1] += out_amounts[0]; for (size_t n = 1; n < out_amounts.size(); ++n) out_amounts[n - 1] = out_amounts[n]; - out_amounts.resize(out_amounts.size() - 1); + out_amounts.pop_back(); } } else