diff options
author | uzhas <uzhas@ydb.tech> | 2022-10-28 19:14:06 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2022-10-28 19:14:06 +0300 |
commit | 6bbe00187e61d0039d6f8dbc103a438594411983 (patch) | |
tree | 70cd9046ae6ff12d4cab6de6a43596ae95a5f01e | |
parent | ecb397a4c1a5e1a3a281940f23c607af2777032f (diff) | |
download | ydb-6bbe00187e61d0039d6f8dbc103a438594411983.tar.gz |
fix coveriy issue 16907: Uninitialized pointer field
-rw-r--r-- | util/network/pollerimpl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/network/pollerimpl.h b/util/network/pollerimpl.h index e8c7e40fba..21534967fa 100644 --- a/util/network/pollerimpl.h +++ b/util/network/pollerimpl.h @@ -626,6 +626,7 @@ private: TCommand(SOCKET fd, int filter) : Fd_(fd) , Filter_(filter) + , Cookie_(nullptr) { } }; |