LibMedia: Default-initialize the Matroska DocTypeVersion to 0

This commit is contained in:
Zaggy1024
2025-12-18 12:04:17 -06:00
committed by Gregory Bertilson
parent 7e78ffdb86
commit 1cb7dea2fd

View File

@@ -20,7 +20,7 @@ namespace Media::Matroska {
struct EBMLHeader {
String doc_type;
u32 doc_type_version;
u32 doc_type_version { 0 };
};
class SegmentInformation {