Merge pull request #7889 from helinwang/send_err

Fix send op data race
emailweixu-patch-1
武毅 7 years ago committed by GitHub
commit 8a6a339eb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -102,7 +102,7 @@ bool RPCClient::Wait() {
return true;
}
std::vector<bool> a(req_count_);
bool a[req_count_];
std::vector<std::future<void>> waits(req_count_);
for (int i = 0; i < req_count_; i++) {

Loading…
Cancel
Save