aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoruzhas <uzhas@ydb.tech>2023-10-10 13:01:45 +0300
committeruzhas <uzhas@ydb.tech>2023-10-10 14:07:40 +0300
commitcf7fa49d763739efc175f8e1107981bb7f99e059 (patch)
tree071cd0659749542a070daf9522bb998674ac5f7c
parent93700a1f5038a34a14a7021da13fa038748e5868 (diff)
downloadydb-cf7fa49d763739efc175f8e1107981bb7f99e059.tar.gz
fix coverity uninit issue
-rw-r--r--ydb/core/grpc_services/grpc_request_check_actor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/grpc_services/grpc_request_check_actor.h b/ydb/core/grpc_services/grpc_request_check_actor.h
index 9ede1a768de..a78c0151ae3 100644
--- a/ydb/core/grpc_services/grpc_request_check_actor.h
+++ b/ydb/core/grpc_services/grpc_request_check_actor.h
@@ -506,7 +506,7 @@ private:
bool SkipCheckConnectRigths_ = false;
std::vector<std::pair<TString, TString>> Attributes_;
const IFacilityProvider* FacilityProvider_;
- bool DmlAuditEnabled_;
+ bool DmlAuditEnabled_ = false;
std::unordered_set<TString> DmlAuditExpectedSubjects_;
};