Skip to content

Commit

Permalink
fix: Fix uninitialized value found by Valgrind (shaka-project#1336)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Feb 8, 2024
1 parent c09eb83 commit 7ef5167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/packager/crypto_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 7ef5167

Please sign in to comment.