fix: Fix uninitialized value found by Valgrind (#1336)

This commit is contained in:
Joey Parrish 2024-02-08 12:50:12 -08:00 committed by GitHub
parent c09eb831b8
commit 7ef51671f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ struct EncryptionParams {
RawKeyParams raw_key;
/// The protection systems to generate, multiple can be OR'd together.
ProtectionSystem protection_systems;
ProtectionSystem protection_systems = ProtectionSystem::kNone;
/// Extra XML data to add to PlayReady data.
std::string playready_extra_header_data;