mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +01:00
fixes #45
This commit is contained in:
parent
f551710f51
commit
008e1004c2
@ -770,7 +770,7 @@ public class AXmlResourceParser implements XmlResourceParser {
|
||||
int uri = (namespace != null)
|
||||
? m_strings.find(namespace)
|
||||
: -1;
|
||||
for (int o = 0; o != m_attributes.length; ++o) {
|
||||
for (int o = 0; o != m_attributes.length; o+=ATTRIBUTE_LENGHT) {
|
||||
if (name == m_attributes[o + ATTRIBUTE_IX_NAME]
|
||||
&& (uri == -1 || uri == m_attributes[o + ATTRIBUTE_IX_NAMESPACE_URI])) {
|
||||
return o / ATTRIBUTE_LENGHT;
|
||||
|
Loading…
Reference in New Issue
Block a user