Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xmlparse.c: Fix extraction of namespace prefix from XML name (#186) #262

Merged
merged 1 commit into from Jun 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
xmlparse.c: Fix extraction of namespace prefix from XML name (#186)
  • Loading branch information
hartwork committed Jun 12, 2019
commit 11f8838bf99ea0a6f0b76f9760c43704d00c4ff6
2 changes: 1 addition & 1 deletion expat/lib/xmlparse.c
Expand Up @@ -6071,7 +6071,7 @@ setElementTypePrefix(XML_Parser parser, ELEMENT_TYPE *elementType)
else
poolDiscard(&dtd->pool);
elementType->prefix = prefix;

break;
}
}
return 1;
Expand Down