Skip to content

Commit

Permalink
Fix compilation under UWP with msvc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibras committed Jun 29, 2024
1 parent dc1e69c commit 9913b06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -7585,7 +7585,7 @@ xmlHandleUndeclaredEntity(xmlParserCtxtPtr ctxt, const xmlChar *name) {

static xmlEntityPtr
xmlLookupGeneralEntity(xmlParserCtxtPtr ctxt, const xmlChar *name, int inAttr) {
xmlEntityPtr ent;
xmlEntityPtr ent = NULL;

/*
* Predefined entities override any extra definition
Expand Down
2 changes: 1 addition & 1 deletion xpath.c
Original file line number Diff line number Diff line change
Expand Up @@ -8481,7 +8481,7 @@ void
xmlXPathLangFunction(xmlXPathParserContextPtr ctxt, int nargs) {
xmlXPathObjectPtr val;
xmlNodePtr cur;
xmlChar *theLang;
xmlChar *theLang = NULL;
const xmlChar *lang;
int ret = 0;
int i;
Expand Down

0 comments on commit 9913b06

Please sign in to comment.