waterWang opened a new pull request, #3491: URL: https://github.com/apache/brpc/pull/3491
Fixes #2793 `main()` in `tools/parallel_http/parallel_http.cpp` allocates `AccessThreadArgs* args = new AccessThreadArgs[FLAGS_thread_num]` but never releases it before `return 0`, leaking the array (and each `AccessThreadArgs` output queue) when the tool exits. Add `delete[] args;` before `return 0`. brpc has no bounty program, so no wallet address appended. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
