diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-23 00:34:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-23 00:34:20 +0100 |
| commit | 26341b606371e8b6a6f6995a303b515e852a25fe (patch) | |
| tree | 02b794a9529541458c52bfa7c41195fd6bf5b630 /src/lib | |
| parent | 159a5e4d3fb4c06d75440fd6edf40df7024afea1 (diff) | |
Fix uninitialised variable.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/spl_entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/spl_entry.h b/src/lib/spl_entry.h index c0d88917b..6ec5c7540 100644 --- a/src/lib/spl_entry.h +++ b/src/lib/spl_entry.h @@ -49,7 +49,7 @@ public: /** CPL ID */ boost::optional<std::string> id; boost::optional<dcp::ContentKind> kind; - bool encrypted; + bool encrypted = false; boost::optional<float> crop_to_ratio; private: |
