mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-13 05:31:44 +00:00
parent
ec4c1c19e9
commit
3d7e0020a4
@ -1,3 +1,8 @@
|
||||
2012-12-05 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* all: bug fix: EBML void elements will be skipped when reading
|
||||
structures from XML (e.g. chapters). Fixes #802.
|
||||
|
||||
2012-12-02 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* all: bug fix: EBML void elements will be skipped when saving
|
||||
|
@ -361,6 +361,10 @@ void
|
||||
ebml_converter_c::to_ebml_recursively(EbmlMaster &parent,
|
||||
pugi::xml_node &node)
|
||||
const {
|
||||
// Skip <EBMLVoid> elements.
|
||||
if (std::string(node.name()) == "EBMLVoid")
|
||||
return;
|
||||
|
||||
std::map<std::string, bool> handled_attributes;
|
||||
|
||||
auto converted_node = convert_node_or_attribute_to_ebml(parent, node, pugi::xml_attribute{}, handled_attributes);
|
||||
|
Loading…
Reference in New Issue
Block a user