Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93d72516 authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Fix compilation of add-resource tag.

It used the wrong tag-type to find the end of itself.
parent 6e478d7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -984,7 +984,7 @@ status_t compileResourceFile(Bundle* bundle,

                while ((code=block.next()) != ResXMLTree::END_DOCUMENT && code != ResXMLTree::BAD_DOCUMENT) {
                    if (code == ResXMLTree::END_TAG) {
                        if (strcmp16(block.getElementName(&len), private_symbols16.string()) == 0) {
                        if (strcmp16(block.getElementName(&len), add_resource16.string()) == 0) {
                            break;
                        }
                    }