1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2026-07-06 13:08:00 -05:00

Linux/macOS: Fix failure to use Hungarian language cause by issue in XML parser.

The method GetNodes implementation didn't parse multiple attributes correctly and it failed with Hungarian XML because of the presence of '>' character in an attribute value.

Issue reported in https://github.com/veracrypt/VeraCrypt/pull/1516
This commit is contained in:
Mounir IDRASSI
2025-03-24 07:55:03 +01:00
parent 865ee6c429
commit 56301ea64b
2 changed files with 94 additions and 34 deletions
+1
View File
@@ -47,6 +47,7 @@ namespace VeraCrypt
protected:
wxString XmlText;
size_t FindTagEnd(size_t startPos) const;
private:
XmlParser (const XmlParser &);