diff options
author | Sergey Uzhakov <uzhastik@gmail.com> | 2022-05-04 17:24:33 +0300 |
---|---|---|
committer | Sergey Uzhakov <uzhastik@gmail.com> | 2022-05-04 17:24:33 +0300 |
commit | a9f89fa664746fa36272f40c19ce1d6455f2b5a0 (patch) | |
tree | 63aed7122af6ccc892d6bcfc9a4cdf36f50b994c | |
parent | 7001ce888368ba77934ff5819357d6f275f541ef (diff) | |
download | ydb-a9f89fa664746fa36272f40c19ce1d6455f2b5a0.tar.gz |
fix UNINIT coverity issue
ref:fe64b29bc1ade4728216cb1c70e266a3fd92d268
-rw-r--r-- | ydb/core/ymq/base/queue_path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/ymq/base/queue_path.h b/ydb/core/ymq/base/queue_path.h index c8154c245bc..57885c6cd00 100644 --- a/ydb/core/ymq/base/queue_path.h +++ b/ydb/core/ymq/base/queue_path.h @@ -8,7 +8,7 @@ struct TQueuePath { TString Root; TString UserName; TString QueueName; - ui64 Version; + ui64 Version = 0; TString VersionSuffix; TQueuePath() |