fix: Fix uninitialized value found by Valgrind (#1336)
This commit is contained in:
parent
c09eb831b8
commit
7ef51671f1
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue