diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c b/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c index cb84274d0a..87ee2ea126 100644 --- a/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c +++ b/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/xmlparse.c @@ -18,7 +18,11 @@ #include <string.h> /* memset(), memcpy() */
#include <assert.h>
+#if defined(UEFI_C_SOURCE)
+ #include <expat/expat.h>
+#else
#include "expat.h"
+#endif
#ifdef XML_UNICODE
#define XML_ENCODE_MAX XML_UTF16_ENCODE_MAX
@@ -1493,6 +1497,10 @@ XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) ps_parsing = XML_FINISHED;
return result;
}
+ break;
+ default:
+ /* XML_FINISHED case required by compiler - but not tested - djv */
+ return XML_STATUS_OK;
}
}
|