Fix uninitialized memory in storage server (#6282)

This commit is contained in:
Andrew Noyes 2022-01-26 13:24:35 -08:00 committed by GitHub
parent 1800259d7c
commit c967e6246b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -922,7 +922,7 @@ public:
} counters;
// Bytes read from storage engine when a storage server starts.
int64_t bytesRestored;
int64_t bytesRestored = 0;
Reference<EventCacheHolder> storageServerSourceTLogIDEventHolder;