This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit aa8596307d3f311831de4dd8b2e581e55ecbc620 Author: Damian Meden <[email protected]> AuthorDate: Mon Mar 4 11:56:36 2024 +0100 Mute some coverity issues. (#11117) CID 1534743, 1534741, 1534735, 1534715, 1534705 (cherry picked from commit ad69650995a3b10fa01d97293de25710ac8620c5) --- plugins/experimental/txn_box/plugin/include/txn_box/accl_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/experimental/txn_box/plugin/include/txn_box/accl_util.h b/plugins/experimental/txn_box/plugin/include/txn_box/accl_util.h index 1f214537f5..c45614ce80 100644 --- a/plugins/experimental/txn_box/plugin/include/txn_box/accl_util.h +++ b/plugins/experimental/txn_box/plugin/include/txn_box/accl_util.h @@ -128,7 +128,7 @@ private: /// hold the first element on the entire tree. node_type_ptr _head; /// this gets incremented on every insert. - int32_t _rank_counter; + int32_t _rank_counter{0}; /// recursive memory cleanup function. void freeup(Node *n); /// clean up function, should deal with all the crap.
