Skip to content

Commit 5a4411f

Browse files
andrewstalinblinkov
authored andcommitted
Fix use-of-uninitialized-value (#15277)
1 parent 23c4e34 commit 5a4411f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/public/lib/ydb_cli/commands/ydb_dynamic_config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class TCommandConfigVolatileDrop : public TYdbCommand {
101101
int Run(TConfig& config) override;
102102

103103
private:
104-
ui64 Version;
104+
ui64 Version = 0;
105105
TString Cluster;
106106
THashSet<ui64> Ids;
107107
TString Dir;

0 commit comments

Comments
 (0)