From 202885ae37d898b1bda46967dccaf410dbc822bb Mon Sep 17 00:00:00 2001 From: Leonid Fedorov <79837786+mariadb-LeonidFedorov@users.noreply.github.com> Date: Wed, 18 Aug 2021 19:50:10 +0300 Subject: [PATCH] obviously wrong bytesTx assignment (#2086) --- writeengine/splitter/we_splclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writeengine/splitter/we_splclient.h b/writeengine/splitter/we_splclient.h index 63c54c337..0a33aadec 100644 --- a/writeengine/splitter/we_splclient.h +++ b/writeengine/splitter/we_splclient.h @@ -213,7 +213,7 @@ public: void setBytesTx(uint32_t BytesTx) { boost::mutex::scoped_lock aLock(fTxMutex); - BytesTx = BytesTx; + fBytesTx = BytesTx; aLock.unlock(); } void updateBytesTx(uint32_t fBytes)