[tcp] fix uninitialized variable warning in TcpExample::ProcessBenchmark() (#6957)

This commit is contained in:
Mason Tran
2021-08-27 18:00:07 -07:00
committed by GitHub
parent 88950e15e1
commit a935fc51f7
+1 -1
View File
@@ -213,7 +213,7 @@ exit:
otError TcpExample::ProcessBenchmark(Arg aArgs[])
{
otError error;
otError error = OT_ERROR_NONE;
uint32_t toSendOut;
VerifyOrExit(!mSendBusy, error = OT_ERROR_BUSY);